X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=Makefile;h=21bbd1b3f2c7ad018d2330b48b25a4f9ebd67f8f;hp=a9ae25c09fb65f187fdc6e5adeb5d1736ad41a3b;hb=6ce15c4265d3813ee311756ec03c6e4da74c1dbd;hpb=db8001f511f8e8d928aa82113431067f968f4966 diff --git a/Makefile b/Makefile index a9ae25c..21bbd1b 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,16 @@ PREFIX?=/usr +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 -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 @@ -18,19 +20,31 @@ petitboot: petitboot.o devices.o 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 - $(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 + +$(PACKAGE)-$(VERSION).tar.gz: $(PACKAGE)-$(VERSION) + tar czvf $@ $^ + +$(PACKAGE)-$(VERSION): clean + mkdir $@ $@/devices + cp -a artwork $@ + cp *.[ch] $@ + cp -a devices/*.[ch] $@/devices/ + cp Makefile $@ + clean: rm -f petitboot rm -f udev-helper