]> git.ozlabs.org Git - petitboot/blob - rules.mk
Move common system routines to lib
[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 system_objs = lib/system/system.o
37 talloc_objs = lib/talloc/talloc.o
38 waiter_objs = lib/waiter/waiter.o
39
40 # daemon objs
41 parser_objs = discover/parser.o discover/parser-conf.o discover/paths.o \
42         $(foreach p, $(parsers), discover/$(p)-parser.o)
43 discover_objs =  discover/udev.o discover/discover-server.o \
44         discover/device-handler.o discover/paths.o discover/parser-utils.o
45
46 # client objs
47 ui_common_objs = ui/common/discover-client.o
48 ncurses_objs =
49 twin_objs = ui/twin/pb-twin.o
50
51 # Makefiles
52 makefiles = Makefile $(top_srcdir)/rules.mk
53
54 # object collections
55 lib_objs = $(list_objs) $(log_objs) $(protocol_objs) $(system_objs) \
56         $(talloc_objs) $(waiter_objs)
57
58 daemon_objs = $(lib_objs) $(parser_objs) $(discover_objs)
59
60 client_objs = $(lib_objs) $(ui_common_objs)
61
62 all: $(uis) $(daemons)
63
64 # ncurses cui
65 pb_cui_objs = $(client_objs) $(ncurses_objs) ui/ncurses/ps3-cui.o \
66         ui/common/ps3.o
67 $(pb_cui_objs): $(makefiles)
68
69 $(pb_cui): LDFLAGS += -lps3-utils -lmenu -lform -lncurses
70
71 $(pb_cui): $(pb_cui_objs)
72         $(LINK.o) -o $@ $^
73
74 # test ui
75 pb_test_objs = $(client_objs) ui/test/pb-test.o
76 $(pb_test_objs): $(makefiles)
77
78 $(pb_test): $(pb_test_objs)
79         $(LINK.o) -o $@ $^
80
81 # twin gui
82 pb_twin_objs = $(client_objs) $(twin_objs) ui/twin/ps3-twin.o
83 $(pb_twin_objs): $(makefiles)
84
85 $(pb_twin): LDFLAGS+=$(twin_LDFLAGS) $(LIBTWIN)
86 $(pb_twin): CFLAGS+=$(twin_CFLAGS)
87
88 $(pb_twin): $(pb_twin_objs)
89         $(LINK.o) -o $@ $^
90
91 # discovery daemon
92 pb_discover_objs = $(daemon_objs) discover/pb-discover.o
93 $(pb_discover_objs): $(makefiles)
94
95 $(pb_discover): $(pb_discover_objs)
96         $(LINK.o) -o $@ $^
97
98 # parser-test
99 parser_test_objs = $(lib_objs) $(parser_objs) test/parser-test.o
100 $(parser_test_objs): $(makefiles)
101
102 $(parser_test): $(parser_test_objs)
103         $(LINK.o) -o $@ $^
104
105 parser-test: $(parser_test)
106
107 install: all $(rules)
108         $(INSTALL) -d $(DESTDIR)$(sbindir)/
109         $(INSTALL) $(daemons) $(uis) $(DESTDIR)$(sbindir)/
110         $(INSTALL) -d $(DESTDIR)$(pkgdatadir)/artwork/
111         $(INSTALL) $(addprefix $(top_srcdir)/ui/twin/artwork/,$(artwork)) \
112                 $(DESTDIR)$(pkgdatadir)/artwork/
113         $(INSTALL) -d $(DESTDIR)$(pkgdatadir)/utils
114         $(INSTALL) -m 644 $(top_srcdir)/$(rules) $(DESTDIR)$(pkgdatadir)/utils
115
116 dist: $(PACKAGE)-$(VERSION).tar.gz
117
118 check: parser-test
119         $(SHELL) test/parser-test.sh
120
121 distcheck: dist
122         tar -xvf $(PACKAGE)-$(VERSION).tar.gz
123         cd $(PACKAGE)-$(VERSION) && make check
124
125 $(PACKAGE)-$(VERSION).tar.gz: $(PACKAGE)-$(VERSION)
126         tar czvf $@ $^
127
128 $(PACKAGE)-$(VERSION): clean
129         for f in $$(git --git-dir=$(top_srcdir)/.git ls-files); do \
130                 d=$@/$$(dirname $$f); \
131                 mkdir -p $$d; \
132                 cp -a $(top_srcdir)/$$f $$d; \
133         done
134
135 clean:
136         rm -rf $(PACKAGE)-$(VERSION)
137         rm -f $(uis)
138         rm -f $(pb_cui_objs)
139         rm -f $(pb_test_objs)
140         rm -f $(pb_twin_objs)
141         rm -f $(daemons)
142         rm -f $(pb_discover_objs)
143         rm -f $(tests)
144         rm -f $(parser_test_objs)
145
146 maintainer-clean: clean
147         -rm -f $(top_srcdir)/aclocal.m4
148         -rm -rf $(top_srcdir)/autom4te.cache
149         -rm -f $(top_srcdir)/config.h.in
150         -rm -f $(top_srcdir)/configure
151         -rm -f config.h
152         -rm -f config.log
153         -rm -f config.status
154         -rm -f Makefile
155         -rm -f $(PACKAGE)-$(VERSION).tar.gz