blob: c54be94159688f2a2dbfba450e454e3f18b90d1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
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)
LDFLAGS =
CFLAGS = --std=gnu99 -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"'
PARSERS = native yaboot kboot
ARTWORK = background.jpg cdrom.png hdd.png usbpen.png tux.png cursor.gz
all: petitboot petitboot-udev-helper
petitboot: petitboot.o devices.o
$(CC) $(LDFLAGS) -o $@ $^
petitboot: LDFLAGS+=$(TWIN_LDFLAGS)
petitboot: CFLAGS+=$(TWIN_CFLAGS)
petitboot-udev-helper: devices/petitboot-udev-helper.o devices/params.o \
devices/parser.o devices/paths.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/paths.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 petitboot-udev-helper \
$(DESTDIR)$(PREFIX)/sbin/petitboot-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
check: parser-test
devices/parser-test.sh
distcheck: dist
tar -xvf $(PACKAGE)-$(VERSION).tar.gz
cd $(PACKAGE)-$(VERSION) && make check
$(PACKAGE)-$(VERSION).tar.gz: $(PACKAGE)-$(VERSION)
tar czvf $@ $^
$(PACKAGE)-$(VERSION): clean
mkdir $@ $@/devices
cp -a artwork $@
cp -a utils $@
cp *.[ch] $@
cp -a devices/*.{c,h,sh} $@/devices/
cp -a devices/parser-tests $@/devices/
cp Makefile $@
cp TODO COPYING $@
clean:
rm -rf $(PACKAGE)-$(VERSION)
rm -f petitboot
rm -f petitboot-udev-helper
rm -f *.o devices/*.o
|