]> git.ozlabs.org Git - petitboot/blobdiff - Makefile
Allow petitboot to run udevtrigger on start
[petitboot] / Makefile
index 64a8c46e630bc8fbc759a20a3a30dfa2957d4089..e192b201692dd90b16e3a6addaeb2e897c17d072 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,14 +3,14 @@ VERSION=0.0.1
 PACKAGE=petitboot
 CC=gcc
 INSTALL=install
 PACKAGE=petitboot
 CC=gcc
 INSTALL=install
-TWIN_CFLAGS=$(shell pkg-config --cflags libtwin)
-TWIN_LDFLAGS=$(shell pkg-config --libs libtwin)
+TWIN_CFLAGS?=$(shell pkg-config --cflags libtwin)
+TWIN_LDFLAGS?=$(shell pkg-config --libs libtwin)
 
 LDFLAGS = 
 CFLAGS = -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"'
 
 
 LDFLAGS = 
 CFLAGS = -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"'
 
-PARSERS = native
-ARTWORK = background.png cdrom.png hdd.png usbpen.png cursor
+PARSERS = native yaboot
+ARTWORK = background.jpg cdrom.png hdd.png usbpen.png cursor
 
 all: petitboot udev-helper
 
 
 all: petitboot udev-helper
 
@@ -20,17 +20,17 @@ 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 \
+udev-helper: devices/udev-helper.o devices/params.o devices/yaboot-cfg.o \
                $(foreach p,$(PARSERS),devices/$(p)-parser.o)
        $(CC) $(LDFLAGS) -o $@ $^
 
 devices/%: CFLAGS+=-I.
 
 install: all
                $(foreach p,$(PARSERS),devices/$(p)-parser.o)
        $(CC) $(LDFLAGS) -o $@ $^
 
 devices/%: CFLAGS+=-I.
 
 install: all
-       $(INSTALL) -D petitboot $(PREFIX)/sbin/petitboot
-       $(INSTALL) -D udev-helper $(PREFIX)/sbin/udev-helper
-       $(INSTALL) -Dd $(PREFIX)/share/petitboot/artwork/
-       $(INSTALL) -t $(PREFIX)/share/petitboot/artwork/ \
+       $(INSTALL) -D petitboot $(DESTDIR)$(PREFIX)/sbin/petitboot
+       $(INSTALL) -D udev-helper $(DESTDIR)$(PREFIX)/sbin/udev-helper
+       $(INSTALL) -Dd $(DESTDIR)$(PREFIX)/share/petitboot/artwork/
+       $(INSTALL) -t $(DESTDIR)$(PREFIX)/share/petitboot/artwork/ \
                $(foreach a,$(ARTWORK),artwork/$(a))
 
 dist:  $(PACKAGE)-$(VERSION).tar.gz
                $(foreach a,$(ARTWORK),artwork/$(a))
 
 dist:  $(PACKAGE)-$(VERSION).tar.gz