Comment on kill.c change.
[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 olddoc #doc
92
93
94 # New docs based on DOCBOOK SGML
95 doc: docs/BusyBox.txt docs/BusyBox.html docs/BusyBox.pdf
96
97 docs/BusyBox.txt: docs/busybox.sgml
98         @echo
99         @echo BusyBox Documentation
100         @echo
101         (cd docs; sgmltools -b txt busybox.sgml)
102
103 docs/BusyBox.dvi: docs/busybox.sgml
104         (cd docs; sgmltools -b dvi busybox.sgml)
105
106 docs/BusyBox.ps: docs/BusyBox.dvi
107         (cd docs; sgmltools -b ps busybox.sgml)
108
109 docs/BusyBox.pdf: docs/BusyBox.ps
110         (cd docs; ps2pdf busybox.ps)
111
112 docs/busybox.lineo.com/BusyBox.html: docs/busybox.sgml
113         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
114
115 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
116         - rm -f docs/BusyBox.html
117         - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
118
119
120 # Old Docs...
121 olddoc: olddoc/BusyBox.txt olddoc/BusyBox.1 olddoc/BusyBox.html
122
123 olddoc/BusyBox.txt: docs/busybox.pod
124         @echo
125         @echo BusyBox Documentation
126         @echo
127         - pod2text docs/busybox.pod > docs/BusyBox.txt
128
129 olddoc/BusyBox.1: docs/busybox.pod
130         - pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1
131
132 olddoc/BusyBox.html: olddoc/busybox.lineo.com/BusyBox.html
133         - rm -f docs/BusyBox.html
134         - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
135
136 olddoc/busybox.lineo.com/BusyBox.html: docs/busybox.pod
137         - pod2html --noindex docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
138         - rm -f pod2html*
139
140 busybox: $(OBJECTS)
141         $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
142         $(STRIP)
143
144 busybox.links: busybox.def.h
145         - ./busybox.mkll | sort >$@
146
147 regexp.o nfsmount.o cmdedit.o: %.o: %.h
148 $(OBJECTS): %.o: busybox.def.h internal.h  %.c Makefile
149
150 test tests:
151         cd tests && $(MAKE) all
152
153 clean:
154         - rm -f busybox.links *~ *.o core
155         - rm -rf _install
156         - cd tests && $(MAKE) clean
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         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;