1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# makefile to package the arduino makefile
FILES := \
arduino.mk \
NEWS \
THANKS \
TODO
VERSION := $(shell sed -n '5s/^\#.* //p' arduino.mk)
all:
tar -cJvf arduino-mk_$(VERSION).txz $(FILES)
clean:
rm arduino-mk_*.txz
|