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