]> git.ozlabs.org Git - petitboot/blob - rules.mk
Add more yaboot parser tests
[petitboot] / rules.mk
1
2 VPATH = $(srcdir)
3
4 CPPFLAGS += -I$(top_srcdir) -I$(top_srcdir)/lib -I$(builddir)
5 LDFLAGS += $(CFLAGS)
6
7 # we need paths to be overridable at build-time
8 DEFS += '-DPREFIX="$(prefix)"' '-DPKG_SHARE_DIR="$(pkgdatadir)"' \
9         '-DLOCAL_STATE_DIR="$(localstatedir)"'
10
11 # programs
12 pb_discover = discover/pb-discover
13 pb_cui = ui/ncurses/pb-cui
14 pb_test = ui/test/pb-test
15 pb_twin = ui/twin/pb-twin
16 parser_test = test/parser-test
17
18 # install targets and components
19 daemons = $(pb_discover)
20 parsers = kboot yaboot
21 uis = $(pb_test)
22 tests = $(parser_test)
23
24 ifeq ($(PBTWIN),y)
25         uis += $(pb_twin)
26 endif
27
28 # other to install
29 artwork = background.jpg cdrom.png hdd.png usbpen.png tux.png cursor.gz
30 rules = utils/99-petitboot.rules
31
32 # client/daemon lib objs
33 list_objs = lib/list/list.o
34 log_objs = lib/log/log.o
35 protocol_objs = lib/pb-protocol/pb-protocol.o
36 talloc_objs = lib/talloc/talloc.o
37 waiter_objs = lib/waiter/waiter.o
38
39 # daemon objs
40 parser_objs = discover/parser.o discover/parser-conf.o discover/paths.o \
41         $(foreach p, $(parsers), discover/$(p)-parser.o)
42 discover_objs =  discover/udev.o discover/discover-server.o \
43         discover/device-handler.o discover/paths.o discover/parser-utils.o
44
45 # client objs
46 ui_common_objs = ui/common/discover-client.o
47 ncurses_objs =
48 twin_objs = ui/twin/pb-twin.o
49
50 # Makefiles
51 makefiles = Makefile $(top_srcdir)/rules.mk
52
53 # object collections
54 lib_objs = $(list_objs) $(log_objs) $(protocol_objs) $(talloc_objs) \
55         $(waiter_objs)
56
57 daemon_objs = $(lib_objs) $(parser_objs) $(discover_objs)
58
59 client_objs = $(lib_objs) $(ui_common_objs)
60
61 all: $(uis) $(daemons)
62
63 # ncurses cui
64 pb_cui_objs = $(client_objs) $(ncurses_objs) ui/ncurses/ps3-cui.o
65 $(pb_cui_objs): $(makefiles)
66
67 $(pb_cui): LDFLAGS += -lncurses
68
69 $(pb_cui): $(pb_cui_objs)
70         $(LINK.o) -o $@ $^
71
72 # test ui
73 pb_test_objs = $(client_objs) ui/test/pb-test.o
74 $(pb_test_objs): $(makefiles)
75
76 $(pb_test): $(pb_test_objs)
77         $(LINK.o) -o $@ $^
78
79 # twin gui
80 pb_twin_objs = $(client_objs) $(twin_objs) ui/twin/ps3-twin.o
81 $(pb_twin_objs): $(makefiles)
82
83 $(pb_twin): LDFLAGS+=$(twin_LDFLAGS) $(LIBTWIN)
84 $(pb_twin): CFLAGS+=$(twin_CFLAGS)
85
86 $(pb_twin): $(pb_twin_objs)
87         $(LINK.o) -o $@ $^
88
89 # discovery daemon
90 pb_discover_objs = $(daemon_objs) discover/pb-discover.o
91 $(pb_discover_objs): $(makefiles)
92
93 $(pb_discover): $(pb_discover_objs)
94         $(LINK.o) -o $@ $^
95
96 # parser-test
97 parser_test_objs = $(lib_objs) $(parser_objs) test/parser-test.o
98 $(parser_test_objs): $(makefiles)
99
100 $(parser_test): $(parser_test_objs)
101         $(LINK.o) -o $@ $^
102
103 parser-test: $(parser_test)
104
105 install: all $(rules)
106         $(INSTALL) -d $(DESTDIR)$(sbindir)/
107         $(INSTALL) $(daemons) $(uis) $(DESTDIR)$(sbindir)/
108         $(INSTALL) -d $(DESTDIR)$(pkgdatadir)/artwork/
109         $(INSTALL) $(addprefix $(top_srcdir)/ui/twin/artwork/,$(artwork)) \
110                 $(DESTDIR)$(pkgdatadir)/artwork/
111         $(INSTALL) -d $(DESTDIR)$(pkgdatadir)/utils
112         $(INSTALL) -m 644 $(top_srcdir)/$(rules) $(DESTDIR)$(pkgdatadir)/utils
113
114 dist: $(PACKAGE)-$(VERSION).tar.gz
115
116 check: parser-test
117         $(SHELL) test/parser-test.sh
118
119 distcheck: dist
120         tar -xvf $(PACKAGE)-$(VERSION).tar.gz
121         cd $(PACKAGE)-$(VERSION) && make check
122
123 $(PACKAGE)-$(VERSION).tar.gz: $(PACKAGE)-$(VERSION)
124         tar czvf $@ $^
125
126 $(PACKAGE)-$(VERSION): clean
127         for f in $$(git --git-dir=$(top_srcdir)/.git ls-files); do \
128                 d=$@/$$(dirname $$f); \
129                 mkdir -p $$d; \
130                 cp -a $(top_srcdir)/$$f $$d; \
131         done
132
133 clean:
134         rm -rf $(PACKAGE)-$(VERSION)
135         rm -f $(uis)
136         rm -f $(pb_cui_objs)
137         rm -f $(pb_test_objs)
138         rm -f $(pb_twin_objs)
139         rm -f $(daemons)
140         rm -f $(pb_discover_objs)
141         rm -f $(tests)
142         rm -f $(parser_test_objs)
143
144 maintainer-clean: clean
145         -rm -f $(top_srcdir)/aclocal.m4
146         -rm -rf $(top_srcdir)/autom4te.cache
147         -rm -f $(top_srcdir)/config.h.in
148         -rm -f $(top_srcdir)/configure
149         -rm -f config.h
150         -rm -f config.log
151         -rm -f config.status
152         -rm -f Makefile
153         -rm -f $(PACKAGE)-$(VERSION).tar.gz