abootimg/Makefile

14 lines
268 B
Makefile
Raw Normal View History

2010-11-26 18:02:39 +08:00
all: abootimg
abootimg: abootimg.c bootimg.h
gcc -g -O2 -Wno-unused-result -o abootimg abootimg.c -DHAS_BLKID -lblkid
clean:
rm -f abootimg abootimg-static
archive: clean
2010-11-29 05:50:44 +08:00
cd ..; tar cvzf abootimg.tar.gz abootimg --exclude tests --exclude tmp\* --exclude .git
2010-11-26 18:02:39 +08:00