]> git.ozlabs.org Git - petitboot/blobdiff - Makefile
Add 'make check' and 'make distcheck' targets
[petitboot] / Makefile
index 161d01a4d2c9c150d21622826994984abc08465a..6fb27cfe29db1fdae2e36bff16bbf66c012cb294 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ TWIN_CFLAGS?=$(shell pkg-config --cflags libtwin)
 TWIN_LDFLAGS?=$(shell pkg-config --libs libtwin)
 
 LDFLAGS = 
-CFLAGS = --std=c99 -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"'
+CFLAGS = --std=gnu99 -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"'
 
 PARSERS = native yaboot kboot
 ARTWORK = background.jpg cdrom.png hdd.png usbpen.png tux.png cursor.gz
@@ -41,18 +41,28 @@ install: all
 
 dist:  $(PACKAGE)-$(VERSION).tar.gz
 
+check: parser-test
+       devices/parser-test.sh
+
+distcheck: dist
+       tar -xvf $(PACKAGE)-$(VERSION).tar.gz
+       cd $(PACKAGE)-$(VERSION) && make check
+
 $(PACKAGE)-$(VERSION).tar.gz: $(PACKAGE)-$(VERSION)
        tar czvf $@ $^
 
 $(PACKAGE)-$(VERSION): clean
        mkdir $@ $@/devices
        cp -a artwork $@
+       cp -a utils $@
        cp *.[ch] $@
-       cp -a devices/*.[ch] $@/devices/
+       cp -a devices/*.{c,h,sh} $@/devices/
+       cp -a devices/parser-tests $@/devices/
        cp Makefile $@
        cp TODO COPYING $@
 
 clean:
+       rm -rf $(PACKAGE)-$(VERSION)
        rm -f petitboot
        rm -f udev-helper
        rm -f *.o devices/*.o