278887f36efc9bba577126417d001f65f9095b62
[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.47pre
23 BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
24 export VERSION
25
26 # If you want a static binary, turn this on.
27 DOSTATIC = false
28
29 # Set the following to `true' to make a debuggable build.
30 # Leave this set to `false' for production use.
31 # eg: `make DODEBUG=true tests'
32 # Do not enable this for production builds...
33 DODEBUG = false
34
35 # This enables compiling with dmalloc ( http://dmalloc.com/ )
36 # which is an excellent public domain mem leak and malloc problem
37 # detector.  To enable dmalloc, before running busybox you will
38 # want to first set up your environment.
39 # eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
40 # Do not enable this for production builds...
41 DODMALLOC = false
42
43 # If you are running a cross compiler, you may want to set this
44 # to something more interesting...
45 CROSS = #powerpc-linux-
46 CC = $(CROSS)gcc
47 STRIPTOOL = $(CROSS)strip
48
49 # To compile vs an alternative libc, you may need to use/adjust
50 # the following lines to meet your needs.  This is how I make
51 # busybox compile with uC-Libc...
52 #LIBCDIR=/home/andersen/CVS/uC-libc
53 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
54 #CFLAGS+=-nostdinc -fno-builtin -I$(LIBCDIR)/include -I$(GCCINCDIR)
55 #LDFLAGS+=-nostdlib
56 #LIBRARIES = $(LIBCDIR)/libc.a
57
58 #--------------------------------------------------------
59
60 # use '-Os' optimization if available, else use -O2
61 OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
62     then echo "-Os"; else echo "-O2" ; fi)
63
64 WARNINGS = -Wall
65
66 ifeq ($(DODMALLOC),true)
67     # For testing mem leaks with dmalloc
68     CFLAGS+=-DDMALLOC
69     LIBRARIES = -ldmalloc
70     # Force debug=true, since this is useless when not debugging...
71     DODEBUG = true
72 endif
73 # -D_GNU_SOURCE is needed because environ is used in init.c
74 ifeq ($(DODEBUG),true)
75     CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
76     LDFLAGS += 
77     STRIP   =
78 else
79     CFLAGS  += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
80     LDFLAGS  += -s
81     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
82     #Only staticly link when _not_ debugging 
83     ifeq ($(DOSTATIC),true)
84         LDFLAGS += --static
85         #
86         #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they 
87         # work) to try and strip out any unused junk.  Doesn't do much for me, 
88         # but you may want to give it a shot...
89         #
90         #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
91         #       -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
92         #                       --gc-sections -v >/dev/null && echo 1),1)
93         #       CFLAGS += -ffunction-sections -fdata-sections
94         #       LDFLAGS += --gc-sections
95         #endif
96     endif
97 endif
98
99 ifndef $(PREFIX)
100     PREFIX = `pwd`/_install
101 endif
102
103 OBJECTS   = $(shell ./busybox.sh) busybox.o messages.o usage.o utility.o
104 CFLAGS    += -DBB_VER='"$(VERSION)"'
105 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
106 ifdef BB_INIT_SCRIPT
107     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
108 endif
109
110
111 all: loop.h busybox busybox.links doc
112
113 doc: olddoc
114
115 # Old Docs...
116 olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
117
118 docs/BusyBox.txt: docs/busybox.pod
119         @echo
120         @echo BusyBox Documentation
121         @echo
122         - pod2text docs/busybox.pod > docs/BusyBox.txt
123
124 docs/BusyBox.1: docs/busybox.pod
125         - pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1
126
127 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
128         - rm -f docs/BusyBox.html
129         - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
130
131 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
132         - pod2html --noindex docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
133         - rm -f pod2html*
134
135
136 # New docs based on DOCBOOK SGML
137 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busybox.html
138
139 docs/busybox.txt: docs/busybox.sgml
140         @echo
141         @echo BusyBox Documentation
142         @echo
143         (cd docs; sgmltools -b txt busybox.sgml)
144
145 docs/busybox.dvi: docs/busybox.sgml
146         (cd docs; sgmltools -b dvi busybox.sgml)
147
148 docs/busybox.ps: docs/busybox.sgml
149         (cd docs; sgmltools -b ps busybox.sgml)
150
151 docs/busybox.pdf: docs/busybox.ps
152         (cd docs; ps2pdf busybox.ps)
153
154 docs/busybox/busybox.html: docs/busybox.sgml
155         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
156
157
158
159 busybox: $(OBJECTS) 
160         $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
161         $(STRIP)
162
163 busybox.links: busybox.def.h
164         - ./busybox.mkll | sort >$@
165
166 nfsmount.o cmdedit.o: %.o: %.h
167 $(OBJECTS): %.o: busybox.def.h internal.h  %.c Makefile
168
169 utility.o: 
170
171 loop.h:
172         @./mk_loop_h.sh
173
174 test tests:
175         cd tests && $(MAKE) all
176
177 clean:
178         cd tests && $(MAKE) clean
179         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
180             docs/busybox.lineo.com/BusyBox.html
181         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
182             docs/busybox.pdf docs/busybox.lineo.com/busybox.html
183         - rm -rf docs/busybox _install
184         - rm -f busybox.links *~ *.o core
185
186 distclean: clean
187         - rm -f busybox
188         - cd tests && $(MAKE) distclean
189
190 install: busybox busybox.links
191         ./install.sh $(PREFIX)
192
193 install-hardlinks: busybox busybox.links
194         ./install.sh $(PREFIX) --hardlinks
195
196 dist release: distclean doc
197         cd ..;                                  \
198         rm -rf busybox-$(VERSION);              \
199         cp -a busybox busybox-$(VERSION);       \
200                                                 \
201         find busybox-$(VERSION)/ -type d        \
202                                  -name CVS      \
203                                  -print         \
204                 | xargs rm -rf;                 \
205                                                 \
206         find busybox-$(VERSION)/ -type f        \
207                                  -name .cvsignore \
208                                  -print         \
209                 | xargs rm -f;                  \
210                                                 \
211         find busybox-$(VERSION)/ -type f        \
212                                  -name .\#*     \
213                                  -print         \
214                 | xargs rm -f;                  \
215                                                 \
216         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
217
218 .PHONY: tags
219 tags:
220         ctags -R .