/make/arduino-mk

To get this branch, use:
bzr branch http://bzr.ed.am/make/arduino-mk
55 by edam
added packaging Makefile
1
# makefile to package the arduino makefile
2
3
FILES := \
4
	arduino.mk \
5
	NEWS \
6
	THANKS \
7
	TODO
8
9
VERSION := $(shell sed -n '5s/^\#.* //p' arduino.mk)
10
11
all: 
12
	tar -cJvf arduino-mk_$(VERSION).txz $(FILES)
56 by edam
added clean goal to Makefile
13
14
clean:
15
	rm arduino-mk_*.txz