Teach md5sum and sha1sum to work the way other applets do so I don't have to
[oweals/busybox.git] / Makefile
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
4 #
5 # Licensed under GPLv2, see the file LICENSE in this tarball for details.
6 #
7
8 # You shouldn't have to edit anything in this file for configuration
9 # purposes, try "make help" or read http://busybox.net/FAQ.html.
10
11 .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig \
12         tags check test depend dep buildtree hosttools _all checkhelp \
13         sizes bloatcheck baseline objsizes
14
15 noconfig_targets := menuconfig config oldconfig randconfig hosttools \
16         defconfig allyesconfig allnoconfig allbareconfig \
17         clean distclean help \
18         release tags
19
20 nocheck_targets := clean distclean help release tags
21
22 # the toplevel sourcedir
23 ifndef top_srcdir
24 top_srcdir=$(CURDIR)
25 endif
26 # toplevel directory of the object-tree
27 ifndef top_builddir
28 top_builddir=$(CURDIR)
29 endif
30
31 export srctree=$(top_srcdir)
32 vpath %/Config.in $(srctree)
33
34 DIRS:=applets archival archival/libunarchive coreutils console-tools \
35         debianutils editors findutils init miscutils modutils networking \
36         networking/libiproute networking/udhcp procps loginutils shell \
37         sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
38
39 SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
40
41 # That's our default target when none is given on the command line
42 _all:
43
44 CONFIG_CONFIG_IN = $(top_srcdir)/Config.in
45
46 ifeq ($(BUILD_SRC),)
47 ifdef O
48   ifeq ("$(origin O)", "command line")
49     BUILD_OUTPUT := $(O)
50     top_builddir := $(O)
51   endif
52 else
53 # If no alternate output-dir was specified, we build in cwd
54 # We are using BUILD_OUTPUT nevertheless to make sure that we create
55 # Rules.mak and the toplevel Makefile, in case they don't exist.
56   BUILD_OUTPUT := $(top_builddir)
57 endif
58
59 # see if we are in verbose mode
60 BUILD_VERBOSE :=
61 ifdef V
62   ifeq ("$(origin V)", "command line")
63     BUILD_VERBOSE := $(V)
64   endif
65 endif
66 ifdef VERBOSE
67   ifeq ("$(origin VERBOSE)", "command line")
68     BUILD_VERBOSE := $(VERBOSE)
69   endif
70 endif
71
72 ifneq ($(strip $(BUILD_VERBOSE)),)
73   export BUILD_VERBOSE
74   CHECK_VERBOSE := -v
75 # ARFLAGS+=v
76 endif
77
78 ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
79 # pull in settings early
80 -include $(top_srcdir)/Rules.mak
81 endif
82
83 # All object directories.
84 OBJ_DIRS := $(DIRS)
85 all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include)
86 all_tree: $(all_tree)
87 $(all_tree):
88         @mkdir -p "$@"
89
90 ifneq ($(BUILD_OUTPUT),)
91 # Invoke a second make in the output directory, passing relevant variables
92 # Check that the output directory actually exists
93 saved-output := $(BUILD_OUTPUT)
94 BUILD_OUTPUT := $(shell cd $(BUILD_OUTPUT) && /bin/pwd)
95 $(if $(wildcard $(BUILD_OUTPUT)),, \
96      $(error output directory "$(saved-output)" does not exist))
97
98 .PHONY: $(MAKECMDGOALS)
99
100 $(filter-out _all,$(MAKECMDGOALS)) _all: $(BUILD_OUTPUT)/Rules.mak $(BUILD_OUTPUT)/Makefile all_tree
101         $(Q)$(MAKE) -C $(BUILD_OUTPUT) \
102         top_srcdir=$(top_srcdir) \
103         top_builddir=$(top_builddir) \
104         BUILD_SRC=$(top_srcdir) \
105         -f $(CURDIR)/Makefile $@
106
107 $(BUILD_OUTPUT)/Rules.mak:
108         @echo > $@
109         @echo top_srcdir=$(top_srcdir) >> $@
110         @echo top_builddir=$(BUILD_OUTPUT) >> $@
111         @echo include $(top_srcdir)/Rules.mak >> $@
112
113 $(BUILD_OUTPUT)/Makefile:
114         @echo > $@
115         @echo top_srcdir=$(top_srcdir) >> $@
116         @echo top_builddir=$(BUILD_OUTPUT) >> $@
117         @echo BUILD_SRC='$$(top_srcdir)' >> $@
118         @echo include '$$(BUILD_SRC)'/Makefile >> $@
119
120 # Leave processing to above invocation of make
121 skip-makefile := 1
122 endif # ifneq ($(BUILD_OUTPUT),)
123 endif # ifeq ($(BUILD_SRC),)
124
125 ifeq ($(skip-makefile),)
126
127 # We only need a copy of the Makefile for the config targets and reuse
128 # the rest from the source directory, i.e. we do not cp ALL_MAKEFILES.
129 scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
130         cp $< $@
131
132 _all: all
133
134 help:
135         @echo 'Cleaning:'
136         @echo '  clean                  - delete temporary files created by build'
137         @echo '  distclean              - delete all non-source files (including .config)'
138         @echo
139         @echo 'Build:'
140         @echo '  all                    - Executable and documentation'
141         @echo '  busybox                - the swiss-army executable'
142         @echo '  doc                    - docs/BusyBox.{txt,html,1}'
143         @echo '  html                   - create html-based cross-reference'
144         @echo
145         @echo 'Configuration:'
146         @echo '  allnoconfig            - disable all symbols in .config'
147         @echo '  allyesconfig           - enable all symbols in .config (see defconfig)'
148         @echo '  allbareconfig          - enable all applets without any sub-features'
149         @echo '  config         - text based configurator (of last resort)'
150         @echo '  defconfig              - set .config to largest generic configuration'
151         @echo '  menuconfig             - interactive curses-based configurator'
152         @echo '  oldconfig              - resolve any unresolved symbols in .config'
153         @echo '  hosttools              - build sed for the host.'
154         @echo '                           You can use these commands if the commands on the host'
155         @echo '                           is unusable. Afterwards use it like:'
156         @echo '                   make SED="$(top_builddir)/sed"'
157         @echo
158         @echo 'Installation:'
159         @echo '  install                - install busybox into $(PREFIX)'
160         @echo '  uninstall'
161         @echo
162         @echo 'Development:'
163         @echo '  baseline               - create busybox_old for bloatcheck.'
164         @echo '  bloatcheck             - show size difference between old and new versions'
165         @echo '  check                  - run the test suite for all applets'
166         @echo '  checkhelp              - check for missing help-entries in Config.in'
167         @echo '  randconfig             - generate a random configuration'
168         @echo '  release                - create a distribution tarball'
169         @echo '  sizes                  - show size of all enabled busybox symbols'
170         @echo '  objsizes               - show size of each .o object built'
171         @echo
172
173
174 include $(top_srcdir)/Rules.mak
175
176 ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
177
178 # Default target if none was requested explicitly
179 all: menuconfig
180
181 # warn if no configuration exists and we are asked to build a non-config target
182 .config:
183         @echo ""
184         @echo "No $(top_builddir)/$@ found!"
185         @echo "Please refer to 'make  help', section Configuration."
186         @echo ""
187         @exit 1
188
189 # configuration
190 # ---------------------------------------------------------------------------
191
192 scripts/config/conf: scripts/config/Makefile
193         $(Q)$(MAKE) -C scripts/config conf
194         -@if [ ! -f .config ] ; then \
195                 touch .config; \
196         fi
197
198 scripts/config/mconf: scripts/config/Makefile
199         $(Q)$(MAKE) -C scripts/config ncurses conf mconf
200         -@if [ ! -f .config ] ; then \
201                 touch .config; \
202         fi
203
204 menuconfig: scripts/config/mconf
205         @[ -f .config ] || $(MAKE) $(MAKEFLAGS) defconfig
206         @./scripts/config/mconf $(CONFIG_CONFIG_IN)
207
208 config: scripts/config/conf
209         @./scripts/config/conf $(CONFIG_CONFIG_IN)
210
211 oldconfig: scripts/config/conf
212         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
213
214 randconfig: scripts/config/conf
215         @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
216
217 allyesconfig: scripts/config/conf
218         @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
219
220 allnoconfig: scripts/config/conf
221         @./scripts/config/conf -n $(CONFIG_CONFIG_IN) > /dev/null
222
223 # defconfig is allyesconfig minus any features that are specialized enough
224 # or cause enough behavior change that the user really should switch them on
225 # manually if that's what they want.  Sort of "maximum sane config".
226
227 defconfig: scripts/config/conf
228         @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
229         @$(SED) -i -r -e "s/^(CONFIG_(DEBUG.*|STATIC|SELINUX|NITPICK|BUILD_(AT_ONCE|LIBBUSYBOX)|FEATURE_(DEVFS|FULL_LIBBUSYBOX|SHARED_BUSYBOX|MTAB_SUPPORT|CLEAN_UP|UDHCP_DEBUG)|INSTALL_NO_USR))=.*/# \1 is not set/" .config
230         @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null
231
232
233 allbareconfig: scripts/config/conf
234         @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
235         @$(SED) -i -r -e "s/^(CONFIG_(DEBUG|STATIC|SELINUX|DEVFSD|NC_GAPING_SECURITY_HOLE|BUILD_AT_ONCE)).*/# \1 is not set/" .config
236         @$(SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config
237         @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config
238         @yes n | ./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null
239
240 hosttools:
241         $(Q)cp .config .config.bak || noold=yea
242         $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" allnoconfig
243         $(Q)mv .config .config.in
244         $(Q)(grep -v CONFIG_SED .config.in ; \
245          echo "CONFIG_SED=y" ; ) > .config
246         $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" oldconfig include/bb_config.h
247         $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" busybox
248         $(Q)[ -f .config.bak ] && mv .config.bak .config || rm .config
249         mv busybox sed
250         @echo "Now do: $(MAKE) SED=$(top_builddir)/sed <target>"
251
252 else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
253
254 all: busybox busybox.links doc
255
256 # In this section, we need .config
257 -include $(top_builddir)/.config.cmd
258 include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
259
260 endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
261
262 -include $(top_builddir)/.config
263 -include $(top_builddir)/.depend
264
265
266 ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
267 libraries-y:=
268 # Which parts of the internal libs are requested?
269 # Per default we only want what was actually selected.
270 # -a denotes all while -y denotes the selected ones.
271 ifeq ($(strip $(CONFIG_FEATURE_FULL_LIBBUSYBOX)),y)
272 LIBRARY_DEFINE:=$(LIBRARY_DEFINE-a)
273 LIBRARY_SRC   :=$(LIBRARY_SRC-a)
274 else # CONFIG_FEATURE_FULL_LIBBUSYBOX
275 LIBRARY_DEFINE:=$(LIBRARY_DEFINE-y)
276 LIBRARY_SRC   :=$(LIBRARY_SRC-y)
277 endif # CONFIG_FEATURE_FULL_LIBBUSYBOX
278 APPLET_SRC:=$(APPLET_SRC-y)
279 APPLETS_DEFINE:=$(APPLETS_DEFINE-y)
280 else  # CONFIG_BUILD_AT_ONCE
281 # no --combine, build archives out of the individual .o
282 # This was the old way the binary was built.
283 libbusybox-obj:=archival/libunarchive/libunarchive.a \
284         networking/libiproute/libiproute.a \
285         libpwdgrp/libpwdgrp.a \
286         coreutils/libcoreutils/libcoreutils.a \
287         libbb/libbb.a
288 libbusybox-obj:=$(patsubst %,$(top_builddir)/%,$(libbusybox-obj))
289
290 ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
291 # linking against libbusybox, so don't build the .a already contained in the .so
292 libraries-y:=$(filter-out $(libbusybox-obj),$(libraries-y))
293 endif # CONFIG_FEATURE_SHARED_BUSYBOX
294 endif # CONFIG_BUILD_AT_ONCE
295
296
297 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
298 LD_LIBBUSYBOX:=libbusybox.so
299 LIBBUSYBOX_SONAME:=$(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)
300 DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \
301         $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
302         $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION)
303 endif # CONFIG_BUILD_LIBBUSYBOX
304
305 ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
306 ifneq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
307 # --combine but not linking against libbusybox, so compile all
308 BUSYBOX_SRC   := $(LIBRARY_SRC)
309 BUSYBOX_DEFINE:= $(LIBRARY_DEFINE)
310 endif # !CONFIG_FEATURE_SHARED_BUSYBOX
311 $(LIBBUSYBOX_SONAME): $(LIBRARY_SRC)
312 else # CONFIG_BUILD_AT_ONCE
313 $(LIBBUSYBOX_SONAME): $(libbusybox-obj)
314 endif # CONFIG_BUILD_AT_ONCE
315
316 ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
317 LDBUSYBOX:=-L$(top_builddir) -lbusybox
318 endif
319
320 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
321 $(LIBBUSYBOX_SONAME):
322 ifndef MAJOR_VERSION
323         $(error MAJOR_VERSION needed for $@ is not defined)
324 endif
325         $(do_link.so) \
326         -Wl,-soname=$(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
327         -Wl,-z,combreloc
328         @rm -f $(DO_INSTALL_LIBS)
329         @for i in $(DO_INSTALL_LIBS); do ln -s $(@) $$i ; done
330         $(do_strip)
331
332 endif # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
333
334 busybox_unstripped: .depend $(LIBBUSYBOX_SONAME) $(BUSYBOX_SRC) $(APPLET_SRC) $(libraries-y)
335         $(do_link)
336
337 busybox: busybox_unstripped
338         $(Q)cp busybox_unstripped busybox
339         $(do_strip)
340
341 %.bflt: %_unstripped
342         $(do_elf2flt)
343
344 busybox.links: $(top_srcdir)/applets/busybox.mkll include/bb_config.h $(top_srcdir)/include/applets.h
345         $(Q)-$(SHELL) $^ >$@
346
347 install: $(top_srcdir)/applets/install.sh busybox busybox.links
348         $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \
349                 $(SHELL) $< $(PREFIX) $(INSTALL_OPTS)
350 ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
351         @echo
352         @echo
353         @echo --------------------------------------------------
354         @echo You will probably need to make your busybox binary
355         @echo setuid root to ensure all configured applets will
356         @echo work properly.
357         @echo --------------------------------------------------
358         @echo
359 endif
360
361 uninstall: busybox.links
362         rm -f $(PREFIX)/bin/busybox
363         for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
364 ifneq ($(strip $(DO_INSTALL_LIBS)),n)
365         for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \
366                 rm -f $(PREFIX)$$i; \
367         done
368 endif
369
370 check test: busybox
371         bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite SED="$(SED)" \
372         $(SHELL) $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
373
374 checkhelp:
375         $(Q)$(top_srcdir)/scripts/checkhelp.awk \
376                 $(wildcard $(patsubst %,%/Config.in,$(SRC_DIRS) ./))
377
378 sizes: busybox_unstripped
379         $(NM) --size-sort $(<)
380
381 bloatcheck: busybox_old busybox_unstripped
382         @$(top_srcdir)/scripts/bloat-o-meter busybox_old busybox_unstripped
383
384 baseline: busybox_unstripped
385         @mv busybox_unstripped busybox_old
386
387 objsizes: busybox_unstripped
388         $(SHELL) $(top_srcdir)/scripts/objsizes
389
390 # Documentation Targets
391 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
392
393 docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod $(top_srcdir)/docs/autodocifier.pl
394         $(disp_doc)
395         $(Q)-mkdir -p docs
396         $(Q)-( cat $(top_srcdir)/docs/busybox_header.pod ; \
397             $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h ; \
398             cat $(top_srcdir)/docs/busybox_footer.pod ; ) > docs/busybox.pod
399
400 docs/BusyBox.txt: docs/busybox.pod
401         $(disp_doc)
402         $(Q)-mkdir -p docs
403         $(Q)-pod2text $< > $@
404
405 docs/BusyBox.1: docs/busybox.pod
406         $(disp_doc)
407         $(Q)-mkdir -p docs
408         $(Q)-pod2man --center=BusyBox --release="version $(VERSION)" \
409                 $< > $@
410
411 docs/BusyBox.html: docs/busybox.net/BusyBox.html
412         $(disp_doc)
413         $(Q)-mkdir -p docs
414         $(Q)-rm -f docs/BusyBox.html
415         $(Q)-cp docs/busybox.net/BusyBox.html docs/BusyBox.html
416
417 docs/busybox.net/BusyBox.html: docs/busybox.pod
418         $(Q)-mkdir -p docs/busybox.net
419         $(Q)-pod2html --noindex $< > \
420             docs/busybox.net/BusyBox.html
421         $(Q)-rm -f pod2htm*
422
423 # The nifty new dependency stuff
424 scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
425         $(do_link.h)
426
427 DEP_INCLUDES := include/bb_config.h
428
429 ifeq ($(strip $(CONFIG_BBCONFIG)),y)
430 DEP_INCLUDES += include/bbconfigopts.h
431
432 include/bbconfigopts.h: .config $(top_srcdir)/scripts/config/mkconfigs
433         $(disp_gen)
434         $(Q)$(top_srcdir)/scripts/config/mkconfigs > $@
435 endif
436
437 ifeq ($(strip $(CONFIG_FEATURE_COMPRESS_USAGE)),y)
438 USAGE_BIN:=scripts/usage
439 $(USAGE_BIN): $(top_srcdir)/scripts/usage.c .config \
440                 $(top_srcdir)/include/usage.h
441         $(do_link.h)
442
443 DEP_INCLUDES += include/usage_compressed.h
444
445 include/usage_compressed.h: .config $(USAGE_BIN) \
446                 $(top_srcdir)/scripts/usage_compressed
447         $(Q)SED="$(SED)" $(SHELL) $(top_srcdir)/scripts/usage_compressed \
448         "$(top_builddir)/scripts" > $@
449 endif # CONFIG_FEATURE_COMPRESS_USAGE
450
451 # workaround alleged bug in make-3.80, make-3.81
452 .NOTPARALLEL: .depend
453
454 depend dep: .depend
455 .depend: scripts/bb_mkdep $(USAGE_BIN) $(DEP_INCLUDES)
456         $(disp_gen)
457         $(Q)rm -f .depend
458         $(Q)mkdir -p include/config
459         $(Q)scripts/bb_mkdep -I $(top_srcdir)/include $(top_srcdir) > $@.tmp
460         $(Q)mv $@.tmp $@
461
462 include/bb_config.h: .config
463         @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
464             $(MAKE) -C scripts/config conf; \
465         fi;
466         @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
467
468 clean:
469         - $(MAKE) -C scripts/config $@
470         - rm -f docs/busybox.dvi docs/busybox.ps \
471             docs/busybox.pod docs/busybox.net/busybox.html \
472             docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
473             docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
474             docs/busybox.net/BusyBox.html busybox.links \
475             libbusybox.so* \
476             .config.old busybox busybox_unstripped \
477             include/usage_compressed.h scripts/usage
478         - rm -r -f _install testsuite/links
479         - find . -name .\*.flags -o -name \*.o  -o -name \*.om -o -name \*.syn \
480             -o -name \*.os -o -name \*.osm -o -name \*.a | xargs rm -f
481
482 distclean: clean
483         rm -f scripts/bb_mkdep scripts/usage
484         rm -r -f include/config include/config.h $(DEP_INCLUDES)
485         find . -name .depend'*' -print0 | xargs -0 rm -f
486         find . -name '*.rej' -print0 | xargs -0 rm -f
487         rm -f .hdepend busybox_old .config .config.old .config.cmd
488
489 release: distclean #doc
490         cd ..; \
491         rm -r -f $(PROG)-$(VERSION); \
492         cp -a busybox $(PROG)-$(VERSION); \
493         \
494         find $(PROG)-$(VERSION)/ -type d \
495                 -name .svn \
496                 -print \
497                 -exec rm -r -f {} \; ; \
498         \
499         find $(PROG)-$(VERSION)/ -type f \
500                 -name .\#* \
501                 -print \
502                 -exec rm -f {} \; ; \
503         \
504         tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
505
506 tags:
507         ctags -R .
508
509 # documentation, cross-reference
510 # Modern distributions already ship synopsis packages (e.g. debian)
511 # If you have an old distribution go to http://synopsis.fresco.org/
512 syn_tgt := $(wildcard $(patsubst %,%/*.c,$(SRC_DIRS)))
513 syn     := $(patsubst %.c, %.syn, $(syn_tgt))
514
515 %.syn: %.c
516         synopsis -p C -l Comments.SSDFilter,Comments.Previous $(INCS) -Wp,verbose,debug,preprocess,cppflags="'$(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) $(PROG_CFLAGS) $(PROG_LDFLAGS) $(CFLAGS_COMBINE) $(APPLETS_DEFINE) $(BUSYBOX_DEFINE)'" -o $@ $<
517 html: $(syn)
518         synopsis -f HTML -Wf,title="'BusyBox Documentation'" -o $@ $^
519
520
521 endif # ifeq ($(skip-makefile),)
522