X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=Makefile;h=54e8f9a67eba36ff0984e7c802ad068a4d01d1b7;hp=642850d84ef578284644525bb71283d9e84c823a;hb=bdb389592338a2f69af98d763a39c617374c1233;hpb=747a0d462cf02ec2b6649f5a3d9b759424d793f8 diff --git a/Makefile b/Makefile index 642850d..54e8f9a 100644 --- a/Makefile +++ b/Makefile @@ -3,14 +3,14 @@ VERSION=0.0.1 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)"' -PARSERS = native yaboot -ARTWORK = background.png 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,17 +20,23 @@ 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 $@ $^ 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