mirror of
https://github.com/ggrandou/abootimg.git
synced 2024-11-23 09:53:32 +08:00
14 lines
251 B
Makefile
14 lines
251 B
Makefile
|
|
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
|
|
cd ..; tar cvzf abootimg.tar.gz abootimg --exclude tests --exclude tmp
|
|
|
|
|