]> git.ozlabs.org Git - petitboot/blobdiff - Makefile
Fix another bogon in log()
[petitboot] / Makefile
index b0a92ea420074af9c956585e6ebc7aadaebfe7d5..54e8f9a67eba36ff0984e7c802ad068a4d01d1b7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,57 @@
+PREFIX?=/usr
+VERSION=0.0.1
+PACKAGE=petitboot
 CC=gcc
-TWIN_CFLAGS=$(shell pkg-config --cflags libtwin)
-TWIN_LDFLAGS=$(shell pkg-config --libs libtwin)
+INSTALL=install
+TWIN_CFLAGS?=$(shell pkg-config --cflags libtwin)
+TWIN_LDFLAGS?=$(shell pkg-config --libs libtwin)
 
-LDFLAGS = $(TWIN_LDFLAGS)
-CFLAGS = -O0 -ggdb -Wall $(TWIN_CFLAGS)
+LDFLAGS = 
+CFLAGS = -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"'
 
-OBJFILES = petitboot.o devices.o
+PARSERS = native yaboot kboot
+ARTWORK = background.jpg cdrom.png hdd.png usbpen.png tux.png cursor.gz
 
-petitboot: $(OBJFILES)
+all: petitboot udev-helper
+
+petitboot: petitboot.o devices.o
+       $(CC) $(LDFLAGS) -o $@ $^
+
+petitboot: LDFLAGS+=$(TWIN_LDFLAGS)
+petitboot: CFLAGS+=$(TWIN_CFLAGS)
+
+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 $(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 *.o
+       rm -f udev-helper
+       rm -f *.o devices/*.o