Make cin be static
[oweals/busybox.git] / Makefile
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2000 Erik Andersen <andersee@debian.org>
4 # Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org>
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #
20
21 PROG      := busybox
22 VERSION   := 0.49pre
23 BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
24 export VERSION
25
26 # With a modern GNU make(1) (highly recommended, that's what all the
27 # developers use), all of the following configuration values can be
28 # overridden at the command line.  For example:
29 #   make CROSS=powerpc-linux- BB_SRC_DIR=$HOME/busybox PREFIX=/mnt/app
30
31 # If you want to add some simple compiler switches (like -march=i686),
32 # especially from the command line, use this instead of CFLAGS directly.
33 # For optimization overrides, it's better still to set OPTIMIZATION.
34 CFLAGS_EXTRA =
35  
36 # If you want a static binary, turn this on.
37 DOSTATIC = false
38
39 # Set the following to `true' to make a debuggable build.
40 # Leave this set to `false' for production use.
41 # eg: `make DODEBUG=true tests'
42 # Do not enable this for production builds...
43 DODEBUG = false
44
45 # This enables compiling with dmalloc ( http://dmalloc.com/ )
46 # which is an excellent public domain mem leak and malloc problem
47 # detector.  To enable dmalloc, before running busybox you will
48 # want to first set up your environment.
49 # eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
50 # Do not enable this for production builds...
51 DODMALLOC = false
52
53 # If you want large file summit support, turn this on.
54 # This has no effect if you don't have a kernel with lfs
55 # support, and a system with libc-2.1.3 or later.
56 # Some of the programs that can benefit from lfs support
57 # are dd, gzip, mount, tar, and mkfs_minix.
58 # LFS allows you to use the above programs for files
59 # larger than 2GB!
60 DOLFS = false
61
62 # If you have a "pristine" source directory, point BB_SRC_DIR to it.
63 # Experimental and incomplete; tell the mailing list
64 # <busybox@opensource.lineo.com> if you do or don't like it so far.
65 BB_SRC_DIR = .
66
67 # If you are running a cross compiler, you may want to set this
68 # to something more interesting, like "powerpc-linux-".
69 CROSS =
70 CC = $(CROSS)gcc
71 STRIPTOOL = $(CROSS)strip
72
73 # To compile vs an alternative libc, you may need to use/adjust
74 # the following lines to meet your needs.  This is how I make
75 # busybox compile staticly with uClibc (needs BB_FEATURE_NFSMOUNT
76 # disabled at the moment).  Note the _full_ path for LIBCDIR.
77 # This is because make doesn't do ~ expansion...
78 #LIBCDIR=/home/andersen/CVS/uClibc
79 #LDFLAGS+=-nostdlib
80 #LIBRARIES = $(LIBCDIR)/libc.a -lgcc
81 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
82 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
83
84 # This is how I compile with the uClibc shared lib...
85 #LIBCDIR=/home/andersen/CVS/uClibc
86 #LDFLAGS+=-nostdlib
87 #LIBRARIES = -luClibc -lgcc $(LIBCDIR)/crt0.o
88 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
89 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
90
91 #--------------------------------------------------------
92
93 # use '-Os' optimization if available, else use -O2
94 OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
95     then echo "-Os"; else echo "-O2" ; fi)
96
97 WARNINGS = -Wall
98
99 ifeq ($(DOLFS),true)
100     # For large file summit support
101     CFLAGS+=-D_FILE_OFFSET_BITS=64
102 endif
103 ifeq ($(DODMALLOC),true)
104     # For testing mem leaks with dmalloc
105     CFLAGS+=-DDMALLOC
106     LIBRARIES = -ldmalloc
107     # Force debug=true, since this is useless when not debugging...
108     DODEBUG = true
109 endif
110 ifeq ($(DODEBUG),true)
111     CFLAGS  += $(WARNINGS) -g -D_GNU_SOURCE
112     LDFLAGS += -Wl,-warn-common
113     STRIP    =
114 else
115     CFLAGS  += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
116     LDFLAGS += -s -Wl,-warn-common
117     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
118 endif
119 ifeq ($(DOSTATIC),true)
120     LDFLAGS += --static
121     #
122     #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they 
123     # work) to try and strip out any unused junk.  Doesn't do much for me, 
124     # but you may want to give it a shot...
125     #
126     #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
127     #   -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
128     #                   --gc-sections -v >/dev/null && echo 1),1)
129     #   CFLAGS += -ffunction-sections -fdata-sections
130     #   LDFLAGS += --gc-sections
131     #endif
132 endif
133
134 ifndef $(PREFIX)
135     PREFIX = `pwd`/_install
136 endif
137
138 # Additional complications due to support for pristine source dir.
139 # Config.h in the build directory should take precedence over the
140 # copy in BB_SRC_DIR, both during the compilation phase and the
141 # shell script that finds the list of object files.
142 #
143 # Work in progress by <ldoolitt@recycle.lbl.gov>.
144 # If it gets in your way, set DISABLE_VPATH=yes
145 ifeq ($(DISABLE_VPATH),yes)
146     CONFIG_H = Config.h
147 else
148     VPATH = .:$(BB_SRC_DIR)
149     CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH)))
150     CONFIG_H    = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null))
151     CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH))) $(CROSS_CFLAGS)
152 endif
153
154 OBJECTS   = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o
155 CFLAGS    += -DBB_VER='"$(VERSION)"'
156 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
157 ifdef BB_INIT_SCRIPT
158     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
159 endif
160
161 # Put user-supplied flags at the end, where they
162 # have a chance of winning.
163 CFLAGS += $(CFLAGS_EXTRA)
164
165 all: busybox busybox.links doc
166
167 doc: olddoc
168
169 # Old Docs...
170 olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
171
172 docs/BusyBox.txt: docs/busybox.pod
173         @echo
174         @echo BusyBox Documentation
175         @echo
176         -mkdir -p docs
177         -pod2text $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.txt
178
179 docs/BusyBox.1: docs/busybox.pod
180         - mkdir -p docs
181         - pod2man --center=BusyBox --release="version $(VERSION)" \
182                 $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.1
183
184 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
185         -@ rm -f docs/BusyBox.html
186         -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
187
188 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
189         -@ mkdir -p docs/busybox.lineo.com
190         -  pod2html --noindex $(BB_SRC_DIR)/docs/busybox.pod > \
191             docs/busybox.lineo.com/BusyBox.html
192         -@ rm -f pod2html*
193
194
195 # New docs based on DOCBOOK SGML
196 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
197
198 docs/busybox.txt: docs/busybox.sgml
199         @echo
200         @echo BusyBox Documentation
201         @echo
202         - mkdir -p docs
203         (cd docs; sgmltools -b txt busybox.sgml)
204
205 docs/busybox.dvi: docs/busybox.sgml
206         - mkdir -p docs
207         (cd docs; sgmltools -b dvi busybox.sgml)
208
209 docs/busybox.ps: docs/busybox.sgml
210         - mkdir -p docs
211         (cd docs; sgmltools -b ps busybox.sgml)
212
213 docs/busybox.pdf: docs/busybox.ps
214         - mkdir -p docs
215         (cd docs; ps2pdf busybox.ps)
216
217 docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
218         - mkdir -p docs
219         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
220
221
222
223 busybox: $(OBJECTS) 
224         $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
225         $(STRIP)
226
227 busybox.links: Config.h applets.h
228         - $(BB_SRC_DIR)/busybox.mkll $(CONFIG_H) $(BB_SRC_DIR)/applets.h >$@
229
230 nfsmount.o cmdedit.o: %.o: %.h
231 $(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
232
233 utility.o: loop.h
234
235 loop.h: mk_loop_h.sh
236         @ sh $<
237
238 test tests:
239         cd tests && $(MAKE) all
240
241 clean:
242         - cd tests && $(MAKE) clean
243         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
244             docs/busybox.lineo.com/BusyBox.html
245         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
246             docs/busybox.pdf docs/busybox.lineo.com/busybox.html
247         - rm -f Config.h.ORG bb.def.h busybox.REGRESS.sh.results bb.OptionsAndFeatures
248         - rm -rf docs/busybox _install
249         - rm -f busybox.links loop.h *~ *.o core
250
251 distclean: clean
252         - rm -f busybox
253         - cd tests && $(MAKE) distclean
254
255 install: busybox busybox.links
256         $(BB_SRC_DIR)/install.sh $(PREFIX)
257
258 install-hardlinks: busybox busybox.links
259         $(BB_SRC_DIR)/install.sh $(PREFIX) --hardlinks
260
261 debug_pristine:
262         @ echo VPATH=\"$(VPATH)\"
263         @ echo CONFIG_LIST=\"$(CONFIG_LIST)\"
264         @ echo CONFIG_H=\"$(CONFIG_H)\"
265         @ echo OBJECTS=\"$(OBJECTS)\"
266
267 dist release: distclean doc
268         cd ..;                                  \
269         rm -rf busybox-$(VERSION);              \
270         cp -a busybox busybox-$(VERSION);       \
271                                                 \
272         find busybox-$(VERSION)/ -type d        \
273                                  -name CVS      \
274                                  -print         \
275                 | xargs rm -rf;                 \
276                                                 \
277         find busybox-$(VERSION)/ -type f        \
278                                  -name .cvsignore \
279                                  -print         \
280                 | xargs rm -f;                  \
281                                                 \
282         find busybox-$(VERSION)/ -type f        \
283                                  -name .\#*     \
284                                  -print         \
285                 | xargs rm -f;                  \
286                                                 \
287         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
288
289 .PHONY: tags
290 tags:
291         ctags -R .