X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=Makefile;h=2759a45ea4d3997ee24ca08db88e7cf00412593d;hp=764582bba3f20cb83c1f9d5db5b5edaab33c6476;hb=bcabb75250c6562ecdf20fdd0c73cbb590a1dd7f;hpb=0b7cc3673a866326b19f0832953557202e227347 diff --git a/Makefile b/Makefile index 764582b..2759a45 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ TWIN_CFLAGS?=$(shell pkg-config --cflags libtwin) TWIN_LDFLAGS?=$(shell pkg-config --libs libtwin) LDFLAGS = -CFLAGS = -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 @@ -21,12 +21,12 @@ petitboot: LDFLAGS+=$(TWIN_LDFLAGS) petitboot: CFLAGS+=$(TWIN_CFLAGS) udev-helper: devices/udev-helper.o devices/params.o devices/parser.o \ - devices/yaboot-cfg.o \ + devices/paths.o devices/yaboot-cfg.o \ $(foreach p,$(PARSERS),devices/$(p)-parser.o) $(CC) $(LDFLAGS) -o $@ $^ parser-test: devices/parser-test.o devices/params.o devices/parser.o \ - devices/yaboot-cfg.o \ + devices/paths.o devices/yaboot-cfg.o \ $(foreach p,$(PARSERS),devices/$(p)-parser.o) $(CC) $(LDFLAGS) -o $@ $^ @@ -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