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