]> git.ozlabs.org Git - petitboot/blobdiff - Makefile
Include COPYING and TODO in dist target
[petitboot] / Makefile
index ff7d446dd5a1c3b7b3f1a806334d95e8b82faf2f..764582bba3f20cb83c1f9d5db5b5edaab33c6476 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ LDFLAGS =
 CFLAGS = -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"'
 
 PARSERS = native yaboot kboot
 CFLAGS = -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"'
 
 PARSERS = native yaboot kboot
-ARTWORK = background.jpg cdrom.png hdd.png usbpen.png cursor.gz
+ARTWORK = background.jpg cdrom.png hdd.png usbpen.png tux.png cursor.gz
 
 all: petitboot udev-helper
 
 
 all: petitboot udev-helper
 
@@ -20,7 +20,13 @@ petitboot: petitboot.o devices.o
 petitboot: LDFLAGS+=$(TWIN_LDFLAGS)
 petitboot: CFLAGS+=$(TWIN_CFLAGS)
 
 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 $@ $^
 
                $(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 *.[ch] $@
        cp -a devices/*.[ch] $@/devices/
        cp Makefile $@
+       cp TODO COPYING $@
 
 clean:
        rm -f petitboot
 
 clean:
        rm -f petitboot