X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=Makefile;h=e5247bc4e8a0cdaf8a647dc8bf53b3aff0b17b7a;hp=870fb14a184aac46d2d4810abfe94cc08cf20a90;hb=7d7c328016aca3e14aee6268a2e7881d3440e226;hpb=0ad5daa6572ad340244998f8f2243905d8f3974f diff --git a/Makefile b/Makefile index 870fb14..e5247bc 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 kboot -ARTWORK = background.jpg cdrom.png hdd.png usbpen.png cursor +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 $@ $^ @@ -44,6 +50,7 @@ $(PACKAGE)-$(VERSION): clean cp *.[ch] $@ cp -a devices/*.[ch] $@/devices/ cp Makefile $@ + cp TODO COPYING $@ clean: rm -f petitboot