232a17d38d51886bed7b3457f5034e6fc694baff
[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.46
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 OBJECTS   = $(shell ./busybox.sh) busybox.o messages.o utility.o
84 CFLAGS    += -DBB_VER='"$(VERSION)"'
85 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
86 ifdef BB_INIT_SCRIPT
87     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
88 endif
89
90 all: busybox busybox.links doc
91
92 doc: olddoc
93
94 # Old Docs...
95 olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
96
97 docs/BusyBox.txt: docs/busybox.pod
98         @echo
99         @echo BusyBox Documentation
100         @echo
101         - pod2text docs/busybox.pod > docs/BusyBox.txt
102
103 docs/BusyBox.1: docs/busybox.pod
104         - pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1
105
106 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
107         - rm -f docs/BusyBox.html
108         - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
109
110 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
111         - pod2html --noindex docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
112         - rm -f pod2html*
113
114
115 # New docs based on DOCBOOK SGML
116 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busybox.html
117
118 docs/busybox.txt: docs/busybox.sgml
119         @echo
120         @echo BusyBox Documentation
121         @echo
122         (cd docs; sgmltools -b txt busybox.sgml)
123
124 docs/busybox.dvi: docs/busybox.sgml
125         (cd docs; sgmltools -b dvi busybox.sgml)
126
127 docs/busybox.ps: docs/busybox.sgml
128         (cd docs; sgmltools -b ps busybox.sgml)
129
130 docs/busybox.pdf: docs/busybox.ps
131         (cd docs; ps2pdf busybox.ps)
132
133 docs/busybox/busybox.html: docs/busybox.sgml
134         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
135
136
137
138 busybox: $(OBJECTS)
139         $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
140         $(STRIP)
141
142 busybox.links: busybox.def.h
143         - ./busybox.mkll | sort >$@
144
145 nfsmount.o cmdedit.o: %.o: %.h
146 $(OBJECTS): %.o: busybox.def.h internal.h  %.c Makefile
147
148 test tests:
149         cd tests && $(MAKE) all
150
151 clean:
152         - rm -f busybox.links *~ *.o core
153         - rm -rf _install
154         - cd tests && $(MAKE) clean
155         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
156             docs/busybox.lineo.com/BusyBox.html
157         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
158             docs/busybox.pdf docs/busybox.lineo.com/busybox.html
159         - rm -rf docs/busybox
160
161 distclean: clean
162         - rm -f busybox
163         - cd tests && $(MAKE) distclean
164
165 install: busybox busybox.links
166         ./install.sh $(PREFIX)
167
168 dist release: distclean doc
169         cd ..;                                  \
170         rm -rf busybox-$(VERSION);              \
171         cp -a busybox busybox-$(VERSION);       \
172                                                 \
173         find busybox-$(VERSION)/ -type d        \
174                                  -name CVS      \
175                                  -print         \
176                 | xargs rm -rf;                 \
177                                                 \
178         find busybox-$(VERSION)/ -type f        \
179                                  -name .cvsignore \
180                                  -print         \
181                 | xargs rm -f;                  \
182                                                 \
183         find busybox-$(VERSION)/ -type f        \
184                                  -name .\#*     \
185                                  -print         \
186                 | xargs rm -f;                  \
187                                                 \
188         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
189
190 .PHONY: tags
191 tags:
192         ctags -R .