source: MondoRescue/branches/stable/mindi-busybox/Makefile@ 1633

Last change on this file since 1633 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 16.6 KB
Line 
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
15noconfig_targets := menuconfig config oldconfig randconfig hosttools \
16 defconfig allyesconfig allnoconfig allbareconfig \
17 clean distclean help \
18 release tags
19
20nocheck_targets := clean distclean help release tags
21
22# the toplevel sourcedir
23ifndef top_srcdir
24top_srcdir=$(CURDIR)
25endif
26# toplevel directory of the object-tree
27ifndef top_builddir
28top_builddir=$(CURDIR)
29endif
30
31export srctree=$(top_srcdir)
32vpath %/Config.in $(srctree)
33
34DIRS:=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
39SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
40
41# That's our default target when none is given on the command line
42_all:
43
44CONFIG_CONFIG_IN = $(top_srcdir)/Config.in
45
46ifeq ($(BUILD_SRC),)
47ifdef O
48 ifeq ("$(origin O)", "command line")
49 BUILD_OUTPUT := $(O)
50 top_builddir := $(O)
51 endif
52else
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)
57endif
58
59# see if we are in verbose mode
60BUILD_VERBOSE :=
61ifdef V
62 ifeq ("$(origin V)", "command line")
63 BUILD_VERBOSE := $(V)
64 endif
65endif
66ifdef VERBOSE
67 ifeq ("$(origin VERBOSE)", "command line")
68 BUILD_VERBOSE := $(VERBOSE)
69 endif
70endif
71
72ifneq ($(strip $(BUILD_VERBOSE)),)
73 export BUILD_VERBOSE
74 CHECK_VERBOSE := -v
75# ARFLAGS+=v
76endif
77
78ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
79# pull in settings early
80-include $(top_srcdir)/Rules.mak
81endif
82
83# All object directories.
84OBJ_DIRS := $(DIRS)
85all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include)
86all_tree: $(all_tree)
87$(all_tree):
88 @mkdir -p "$@"
89
90ifneq ($(BUILD_OUTPUT),)
91# Invoke a second make in the output directory, passing relevant variables
92# Check that the output directory actually exists
93saved-output := $(BUILD_OUTPUT)
94BUILD_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
121skip-makefile := 1
122endif # ifneq ($(BUILD_OUTPUT),)
123endif # ifeq ($(BUILD_SRC),)
124
125ifeq ($(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.
129scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
130 cp $< $@
131
132_all: all
133
134help:
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
174include $(top_srcdir)/Rules.mak
175
176ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
177
178# Default target if none was requested explicitly
179all: 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
192scripts/config/conf: scripts/config/Makefile
193 $(Q)$(MAKE) -C scripts/config conf
194 -@if [ ! -f .config ] ; then \
195 touch .config; \
196 fi
197
198scripts/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
204menuconfig: scripts/config/mconf
205 @[ -f .config ] || $(MAKE) $(MAKEFLAGS) defconfig
206 @./scripts/config/mconf $(CONFIG_CONFIG_IN)
207
208config: scripts/config/conf
209 @./scripts/config/conf $(CONFIG_CONFIG_IN)
210
211oldconfig: scripts/config/conf
212 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
213
214randconfig: scripts/config/conf
215 @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
216
217allyesconfig: scripts/config/conf
218 @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
219 @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config
220 @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null
221
222allnoconfig: scripts/config/conf
223 @./scripts/config/conf -n $(CONFIG_CONFIG_IN) > /dev/null
224
225# defconfig is allyesconfig minus any features that are specialized enough
226# or cause enough behavior change that the user really should switch them on
227# manually if that's what they want. Sort of "maximum sane config".
228
229defconfig: scripts/config/conf
230 @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
231 @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|BUILD_(AT_ONCE|LIBBUSYBOX)|FEATURE_(DEVFS|FULL_LIBBUSYBOX|SHARED_BUSYBOX|MTAB_SUPPORT|CLEAN_UP|UDHCP_DEBUG)|INSTALL_NO_USR))=.*/# \1 is not set/" .config
232 @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null
233
234
235allbareconfig: scripts/config/conf
236 @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
237 @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG|STATIC|SELINUX|DEVFSD|NC_GAPING_SECURITY_HOLE|BUILD_AT_ONCE)).*/# \1 is not set/" .config
238 @$(SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config
239 @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config
240 @yes n | ./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null
241
242hosttools:
243 $(Q)cp .config .config.bak || noold=yea
244 $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" allnoconfig
245 $(Q)mv .config .config.in
246 $(Q)(grep -v CONFIG_SED .config.in ; \
247 echo "CONFIG_SED=y" ; ) > .config
248 $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" oldconfig include/bb_config.h
249 $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" busybox
250 $(Q)[ -f .config.bak ] && mv .config.bak .config || rm .config
251 mv busybox sed
252 @echo "Now do: $(MAKE) SED=$(top_builddir)/sed <target>"
253
254else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
255
256all: busybox busybox.links doc
257
258# In this section, we need .config
259-include $(top_builddir)/.config.cmd
260include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
261
262endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
263
264-include $(top_builddir)/.config
265-include $(top_builddir)/.depend
266
267
268ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
269libraries-y:=
270# Which parts of the internal libs are requested?
271# Per default we only want what was actually selected.
272# -a denotes all while -y denotes the selected ones.
273ifeq ($(strip $(CONFIG_FEATURE_FULL_LIBBUSYBOX)),y)
274LIBRARY_DEFINE:=$(LIBRARY_DEFINE-a)
275LIBRARY_SRC :=$(LIBRARY_SRC-a)
276else # CONFIG_FEATURE_FULL_LIBBUSYBOX
277LIBRARY_DEFINE:=$(LIBRARY_DEFINE-y)
278LIBRARY_SRC :=$(LIBRARY_SRC-y)
279endif # CONFIG_FEATURE_FULL_LIBBUSYBOX
280APPLET_SRC:=$(APPLET_SRC-y)
281APPLETS_DEFINE:=$(APPLETS_DEFINE-y)
282else # CONFIG_BUILD_AT_ONCE
283# no --combine, build archives out of the individual .o
284# This was the old way the binary was built.
285libbusybox-obj:=archival/libunarchive/libunarchive.a \
286 networking/libiproute/libiproute.a \
287 libpwdgrp/libpwdgrp.a \
288 coreutils/libcoreutils/libcoreutils.a \
289 libbb/libbb.a
290libbusybox-obj:=$(patsubst %,$(top_builddir)/%,$(libbusybox-obj))
291
292ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
293# linking against libbusybox, so don't build the .a already contained in the .so
294libraries-y:=$(filter-out $(libbusybox-obj),$(libraries-y))
295endif # CONFIG_FEATURE_SHARED_BUSYBOX
296endif # CONFIG_BUILD_AT_ONCE
297
298
299ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
300LD_LIBBUSYBOX:=libbusybox.so
301LIBBUSYBOX_SONAME:=$(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)
302DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \
303 $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
304 $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION)
305endif # CONFIG_BUILD_LIBBUSYBOX
306
307ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
308ifneq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
309# --combine but not linking against libbusybox, so compile all
310BUSYBOX_SRC := $(LIBRARY_SRC)
311BUSYBOX_DEFINE:= $(LIBRARY_DEFINE)
312endif # !CONFIG_FEATURE_SHARED_BUSYBOX
313$(LIBBUSYBOX_SONAME): $(LIBRARY_SRC)
314else # CONFIG_BUILD_AT_ONCE
315$(LIBBUSYBOX_SONAME): $(libbusybox-obj)
316endif # CONFIG_BUILD_AT_ONCE
317
318ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
319LDBUSYBOX:=-L$(top_builddir) -lbusybox
320endif
321
322ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
323$(LIBBUSYBOX_SONAME):
324ifndef MAJOR_VERSION
325 $(error MAJOR_VERSION needed for $@ is not defined)
326endif
327 $(do_link.so) \
328 -Wl,-soname=$(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
329 -Wl,-z,combreloc
330 @rm -f $(DO_INSTALL_LIBS)
331 @for i in $(DO_INSTALL_LIBS); do ln -s $(@) $$i ; done
332 $(do_strip)
333
334endif # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
335
336busybox_unstripped: .depend $(LIBBUSYBOX_SONAME) $(BUSYBOX_SRC) $(APPLET_SRC) $(libraries-y)
337 $(do_link)
338
339busybox: busybox_unstripped
340 $(Q)cp busybox_unstripped busybox
341 $(do_strip)
342
343%.bflt: %_unstripped
344 $(do_elf2flt)
345
346busybox.links: $(top_srcdir)/applets/busybox.mkll include/bb_config.h $(top_srcdir)/include/applets.h
347 $(Q)-$(SHELL) $^ >$@
348
349install: $(top_srcdir)/applets/install.sh busybox busybox.links
350 $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \
351 $(SHELL) $< $(PREFIX) $(INSTALL_OPTS)
352ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
353 @echo
354 @echo
355 @echo --------------------------------------------------
356 @echo You will probably need to make your busybox binary
357 @echo setuid root to ensure all configured applets will
358 @echo work properly.
359 @echo --------------------------------------------------
360 @echo
361endif
362
363uninstall: busybox.links
364 rm -f $(PREFIX)/bin/busybox
365 for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
366ifneq ($(strip $(DO_INSTALL_LIBS)),n)
367 for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \
368 rm -f $(PREFIX)$$i; \
369 done
370endif
371
372check test: busybox
373 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite SED="$(SED)" \
374 $(SHELL) $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
375
376checkhelp:
377 $(Q)$(top_srcdir)/scripts/checkhelp.awk \
378 $(wildcard $(patsubst %,%/Config.in,$(SRC_DIRS) ./))
379
380sizes: busybox_unstripped
381 $(NM) --size-sort $(<)
382
383bloatcheck: busybox_old busybox_unstripped
384 @$(top_srcdir)/scripts/bloat-o-meter busybox_old busybox_unstripped
385
386baseline: busybox_unstripped
387 @mv busybox_unstripped busybox_old
388
389objsizes: busybox_unstripped
390 $(SHELL) $(top_srcdir)/scripts/objsizes
391
392# Documentation Targets
393doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
394
395docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod $(top_srcdir)/docs/autodocifier.pl
396 $(disp_doc)
397 $(Q)-mkdir -p docs
398 $(Q)-( cat $(top_srcdir)/docs/busybox_header.pod ; \
399 $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h ; \
400 cat $(top_srcdir)/docs/busybox_footer.pod ; ) > docs/busybox.pod
401
402docs/BusyBox.txt: docs/busybox.pod
403 $(disp_doc)
404 $(Q)-mkdir -p docs
405 $(Q)-pod2text $< > $@
406
407docs/BusyBox.1: docs/busybox.pod
408 $(disp_doc)
409 $(Q)-mkdir -p docs
410 $(Q)-pod2man --center=BusyBox --release="version $(VERSION)" \
411 $< > $@
412
413docs/BusyBox.html: docs/busybox.net/BusyBox.html
414 $(disp_doc)
415 $(Q)-mkdir -p docs
416 $(Q)-rm -f docs/BusyBox.html
417 $(Q)-cp docs/busybox.net/BusyBox.html docs/BusyBox.html
418
419docs/busybox.net/BusyBox.html: docs/busybox.pod
420 $(Q)-mkdir -p docs/busybox.net
421 $(Q)-pod2html --noindex $< > \
422 docs/busybox.net/BusyBox.html
423 $(Q)-rm -f pod2htm*
424
425# The nifty new dependency stuff
426scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
427 $(do_link.h)
428
429DEP_INCLUDES := include/bb_config.h
430
431ifeq ($(strip $(CONFIG_BBCONFIG)),y)
432DEP_INCLUDES += include/bbconfigopts.h
433
434include/bbconfigopts.h: .config $(top_srcdir)/scripts/config/mkconfigs
435 $(disp_gen)
436 $(Q)$(top_srcdir)/scripts/config/mkconfigs > $@
437endif
438
439ifeq ($(strip $(CONFIG_FEATURE_COMPRESS_USAGE)),y)
440USAGE_BIN:=scripts/usage
441$(USAGE_BIN): $(top_srcdir)/scripts/usage.c .config \
442 $(top_srcdir)/include/usage.h
443 $(do_link.h)
444
445DEP_INCLUDES += include/usage_compressed.h
446
447include/usage_compressed.h: .config $(USAGE_BIN) \
448 $(top_srcdir)/scripts/usage_compressed
449 $(Q)SED="$(SED)" $(SHELL) $(top_srcdir)/scripts/usage_compressed \
450 "$(top_builddir)/scripts" > $@
451endif # CONFIG_FEATURE_COMPRESS_USAGE
452
453# workaround alleged bug in make-3.80, make-3.81
454.NOTPARALLEL: .depend
455
456depend dep: .depend
457.depend: scripts/bb_mkdep $(USAGE_BIN) $(DEP_INCLUDES)
458 $(disp_gen)
459 $(Q)rm -f .depend
460 $(Q)mkdir -p include/config
461 $(Q)scripts/bb_mkdep -I $(top_srcdir)/include $(top_srcdir) > $@.tmp
462 $(Q)mv $@.tmp $@
463
464include/bb_config.h: .config
465 @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
466 $(MAKE) -C scripts/config conf; \
467 fi;
468 @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
469
470clean:
471 - $(MAKE) -C scripts/config $@
472 - rm -f docs/busybox.dvi docs/busybox.ps \
473 docs/busybox.pod docs/busybox.net/busybox.html \
474 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
475 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
476 docs/busybox.net/BusyBox.html busybox.links \
477 libbusybox.so* \
478 .config.old busybox busybox_unstripped \
479 include/usage_compressed.h scripts/usage
480 - rm -r -f _install testsuite/links
481 - find . -name .\*.flags -o -name \*.o -o -name \*.om -o -name \*.syn \
482 -o -name \*.os -o -name \*.osm -o -name \*.a | xargs rm -f
483
484distclean: clean
485 rm -f scripts/bb_mkdep scripts/usage
486 rm -r -f include/config include/config.h $(DEP_INCLUDES)
487 find . -name .depend'*' -print0 | xargs -0 rm -f
488 rm -f .hdepend
489 rm -f .config .config.old .config.cmd
490
491release: distclean #doc
492 cd ..; \
493 rm -r -f $(PROG)-$(VERSION); \
494 cp -a busybox $(PROG)-$(VERSION); \
495 \
496 find $(PROG)-$(VERSION)/ -type d \
497 -name .svn \
498 -print \
499 -exec rm -r -f {} \; ; \
500 \
501 find $(PROG)-$(VERSION)/ -type f \
502 -name .\#* \
503 -print \
504 -exec rm -f {} \; ; \
505 \
506 tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
507
508tags:
509 ctags -R .
510
511# documentation, cross-reference
512# Modern distributions already ship synopsis packages (e.g. debian)
513# If you have an old distribution go to http://synopsis.fresco.org/
514syn_tgt := $(wildcard $(patsubst %,%/*.c,$(SRC_DIRS)))
515syn := $(patsubst %.c, %.syn, $(syn_tgt))
516
517%.syn: %.c
518 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 $@ $<
519html: $(syn)
520 synopsis -f HTML -Wf,title="'BusyBox Documentation'" -o $@ $^
521
522
523endif # ifeq ($(skip-makefile),)
524
Note: See TracBrowser for help on using the repository browser.