X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=Makefile;h=cecf20c9cc096e6b8eb257280a03dad4d1300974;hp=e192b201692dd90b16e3a6addaeb2e897c17d072;hb=827e0b3bdfaf4a218e1d75cb9e6a52ec097a3a38;hpb=188f491cdfabc8e01bc483e3652f4f8306311920 diff --git a/Makefile b/Makefile index e192b20..cecf20c 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,10 @@ 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 -ARTWORK = background.jpg cdrom.png hdd.png usbpen.png cursor +PARSERS = native yaboot kboot +ARTWORK = background.jpg cdrom.png hdd.png usbpen.png tux.png cursor.gz all: petitboot udev-helper @@ -20,7 +20,13 @@ petitboot: petitboot.o devices.o petitboot: LDFLAGS+=$(TWIN_LDFLAGS) petitboot: CFLAGS+=$(TWIN_CFLAGS) -udev-helper: devices/udev-helper.o devices/params.o devices/yaboot-cfg.o \ +udev-helper: devices/udev-helper.o devices/params.o devices/parser.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 \ $(foreach p,$(PARSERS),devices/$(p)-parser.o) $(CC) $(LDFLAGS) -o $@ $^ @@ -41,9 +47,11 @@ $(PACKAGE)-$(VERSION).tar.gz: $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION): clean mkdir $@ $@/devices cp -a artwork $@ + cp -a utils $@ cp *.[ch] $@ cp -a devices/*.[ch] $@/devices/ cp Makefile $@ + cp TODO COPYING $@ clean: rm -f petitboot