blob: cf3d143211c8b1e12c9a9235f27ebc2aeccc0fcf [file] [log] [blame]
Denis Vlasenkoda8f43f2006-10-09 19:47:38 +00001# ==========================================================================
2# Build system
3# ==========================================================================
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00004
5%.bflt: %_unstripped
6 $(CROSS_COMPILE)elf2flt $(ELF2FLTFLAGS) $< -o $@
7
Bernhard Reutner-Fischer193bcf32006-11-17 13:17:04 +00008busybox.links: $(srctree)/applets/busybox.mkll $(objtree)/include/autoconf.h $(srctree)/include/applets.h
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00009 $(Q)-$(SHELL) $^ >$@
10
11.PHONY: install
Bernhard Reutner-Fischer8bfd2152006-11-17 13:54:29 +000012ifeq ($(CONFIG_INSTALL_APPLET_SYMLINKS),y)
13INSTALL_OPTS:= --symlinks
14endif
15ifeq ($(CONFIG_INSTALL_APPLET_HARDLINKS),y)
16INSTALL_OPTS:= --hardlinks
17endif
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000018install: $(srctree)/applets/install.sh busybox busybox.links
19 $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \
20 $(SHELL) $< $(CONFIG_PREFIX) $(INSTALL_OPTS)
21ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
22 @echo
23 @echo
24 @echo --------------------------------------------------
25 @echo You will probably need to make your busybox binary
26 @echo setuid root to ensure all configured applets will
27 @echo work properly.
28 @echo --------------------------------------------------
29 @echo
30endif
31
32uninstall: busybox.links
33 rm -f $(CONFIG_PREFIX)/bin/busybox
34 for i in `cat busybox.links` ; do rm -f $(CONFIG_PREFIX)$$i; done
35ifneq ($(strip $(DO_INSTALL_LIBS)),n)
36 for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \
37 rm -f $(CONFIG_PREFIX)$$i; \
38 done
39endif
40
Bernhard Reutner-Fischeraae82e02007-01-27 22:04:58 +000041check test: busybox busybox.links
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000042 bindir=$(objtree) srcdir=$(srctree)/testsuite SED="$(SED)" \
Bernhard Reutner-Fischeraae82e02007-01-27 22:04:58 +000043 $(SHELL) $(srctree)/testsuite/runtest $(if $(KBUILD_VERBOSE:0=),-v)
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000044
Denis Vlasenko5fa71482006-12-12 22:31:15 +000045.PHONY: release
46release: distclean
47 cd ..; \
48 rm -r -f busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION); \
Denis Vlasenko5e2db5e2006-12-12 23:46:31 +000049 cp -a busybox busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) && { \
Denis Vlasenko5fa71482006-12-12 22:31:15 +000050 find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type d \
51 -name .svn \
52 -print \
Denis Vlasenko5e2db5e2006-12-12 23:46:31 +000053 -exec rm -r -f {} \; ; \
Denis Vlasenko5fa71482006-12-12 22:31:15 +000054 find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \
55 -name .\#* \
56 -print \
Denis Vlasenko5e2db5e2006-12-12 23:46:31 +000057 -exec rm -f {} \; ; \
Denis Vlasenko5fa71482006-12-12 22:31:15 +000058 tar -czf busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION).tar.gz \
Denis Vlasenko5e2db5e2006-12-12 23:46:31 +000059 busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ ; }
Denis Vlasenko5fa71482006-12-12 22:31:15 +000060
Bernhard Reutner-Fischerd6bbf992006-11-22 09:39:48 +000061.PHONY: checkhelp
62checkhelp:
63 $(Q)$(srctree)/scripts/checkhelp.awk \
64 $(patsubst %,$(srctree)/%,$(wildcard $(patsubst %,%/Config.in,$(busybox-dirs) ./)))
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000065
66.PHONY: sizes
67sizes: busybox_unstripped
68 $(NM) --size-sort $(<)
69
70.PHONY: bloatcheck
71bloatcheck: busybox_old busybox_unstripped
72 @$(srctree)/scripts/bloat-o-meter busybox_old busybox_unstripped
73
74.PHONY: baseline
75baseline: busybox_unstripped
76 @mv busybox_unstripped busybox_old
77
78.PHONY: objsizes
79objsizes: busybox_unstripped
Denis Vlasenko18684092006-10-05 17:11:08 +000080 $(srctree)/scripts/objsizes
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000081
Denis Vlasenkod4fea902007-06-10 00:54:27 +000082.PHONY: stksizes
83stksizes: busybox_unstripped
84 $(CROSS_COMPILE)objdump -d busybox_unstripped | $(srctree)/scripts/checkstack.pl $(ARCH)
85
Denis Vlasenko00252642006-11-30 20:41:28 +000086.PHONY: bigdata
87bigdata: busybox_unstripped
Denis Vlasenkod4fea902007-06-10 00:54:27 +000088 $(CROSS_COMPILE)nm --size-sort busybox_unstripped | grep -vi ' [tr] '
Denis Vlasenko00252642006-11-30 20:41:28 +000089
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000090# Documentation Targets
91.PHONY: doc
92doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
93
94docs/busybox.pod: $(srctree)/docs/busybox_header.pod \
95 $(srctree)/include/usage.h \
96 $(srctree)/docs/busybox_footer.pod \
97 $(srctree)/docs/autodocifier.pl
98 $(disp_doc)
99 $(Q)-mkdir -p docs
100 $(Q)-( cat $(srctree)/docs/busybox_header.pod ; \
101 $(srctree)/docs/autodocifier.pl $(srctree)/include/usage.h ; \
102 cat $(srctree)/docs/busybox_footer.pod ; ) > docs/busybox.pod
103
104docs/BusyBox.txt: docs/busybox.pod
105 $(disp_doc)
106 $(Q)-mkdir -p docs
107 $(Q)-pod2text $< > $@
108
109docs/BusyBox.1: docs/busybox.pod
110 $(disp_doc)
111 $(Q)-mkdir -p docs
112 $(Q)-pod2man --center=BusyBox --release="version $(VERSION)" \
113 $< > $@
114
115docs/BusyBox.html: docs/busybox.net/BusyBox.html
116 $(disp_doc)
117 $(Q)-mkdir -p docs
118 $(Q)-rm -f docs/BusyBox.html
119 $(Q)-cp docs/busybox.net/BusyBox.html docs/BusyBox.html
120
121docs/busybox.net/BusyBox.html: docs/busybox.pod
122 $(Q)-mkdir -p docs/busybox.net
123 $(Q)-pod2html --noindex $< > \
124 docs/busybox.net/BusyBox.html
125 $(Q)-rm -f pod2htm*
126
127# documentation, cross-reference
128# Modern distributions already ship synopsis packages (e.g. debian)
129# If you have an old distribution go to http://synopsis.fresco.org/
Bernhard Reutner-Fischerbc95f572006-12-06 15:29:00 +0000130syn_tgt = $(wildcard $(patsubst %,%/*.c,$(busybox-alldirs)))
131syn = $(patsubst %.c, %.syn, $(syn_tgt))
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000132
Bernhard Reutner-Fischerfeea1b92006-12-06 21:51:59 +0000133comma:= ,
134brace_open:= (
135brace_close:= )
136
137SYN_CPPFLAGS := $(strip $(CPPFLAGS) $(EXTRA_CPPFLAGS))
138SYN_CPPFLAGS := $(subst $(brace_open),\$(brace_open),$(SYN_CPPFLAGS))
139SYN_CPPFLAGS := $(subst $(brace_close),\$(brace_close),$(SYN_CPPFLAGS))
140#SYN_CPPFLAGS := $(subst ",\",$(SYN_CPPFLAGS))
141#")
142#SYN_CPPFLAGS := [$(patsubst %,'%'$(comma),$(SYN_CPPFLAGS))'']
143
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000144%.syn: %.c
Bernhard Reutner-Fischerfeea1b92006-12-06 21:51:59 +0000145 synopsis -p C -l Comments.SSDFilter,Comments.Previous -Wp,preprocess=True,cppflags="'$(SYN_CPPFLAGS)'" -o $@ $<
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000146
147.PHONY: html
148html: $(syn)
149 synopsis -f HTML -Wf,title="'BusyBox Documentation'" -o $@ $^
Mike Frysinger3c82e482007-05-02 22:07:03 +0000150
151-include $(srctree)/Makefile.local