A number of additional fixed from Pavel Roskin, note some more bugs in the
[platform/upstream/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.44
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 = true
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 #CFLAGS+=-nostdinc -I/home/andersen/CVS/uC-libc/include -I/usr/include/linux
37 #LDFLAGS+=-nostdlib -L/home/andersen/CVS/libc.a
38
39
40 CC = gcc
41
42 # use '-Os' optimization if available, else use -O2
43 OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
44     then echo "-Os"; else echo "-O2" ; fi)
45
46
47 # Allow alternative stripping tools to be used...
48 ifndef $(STRIPTOOL)
49     STRIPTOOL = strip
50 endif
51
52 # -D_GNU_SOURCE is needed because environ is used in init.c
53 ifeq ($(DODEBUG),true)
54     CFLAGS += -Wall -g -D_GNU_SOURCE
55     LDFLAGS = 
56     STRIP   =
57 else
58     CFLAGS  += -Wall $(OPTIMIZATION) -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE
59     LDFLAGS  = -s
60     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
61     #Only staticly link when _not_ debugging 
62     ifeq ($(DOSTATIC),true)
63         LDFLAGS += --static
64         #
65         #use '-ffunction-sections -fdata-sections' and '--gc-sections' if they work
66         #to try and strip out any unused junk.  Doesn't do much for me, but you may
67         #want to give it a shot...
68         #
69         #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
70         #       -o /dev/null -xc /dev/null 2>/dev/null && $(LD) --gc-sections -v >/dev/null && echo 1),1)
71         #       CFLAGS += -ffunction-sections -fdata-sections
72         #       LDFLAGS += --gc-sections
73         #endif
74     endif
75 endif
76
77 ifndef $(PREFIX)
78     PREFIX = `pwd`/_install
79 endif
80
81
82 LIBRARIES =
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: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
93
94 docs/BusyBox.txt: docs/busybox.pod
95         @echo
96         @echo BusyBox Documentation
97         @echo
98         pod2text docs/busybox.pod > docs/BusyBox.txt
99
100 docs/BusyBox.1: docs/busybox.pod
101         pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1
102
103 docs/BusyBox.html: docs/busybox.pod
104         pod2html docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
105         - rm -f docs/BusyBox.html
106         - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
107         - rm -f pod2html*
108
109 busybox: $(OBJECTS)
110         $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
111         $(STRIP)
112
113 busybox.links: busybox.def.h
114         - ./busybox.mkll | sort >$@
115
116 regexp.o nfsmount.o cmdedit.o: %.o: %.h
117 $(OBJECTS): %.o: busybox.def.h internal.h  %.c Makefile
118
119 test tests:
120         cd tests && $(MAKE) all
121
122 clean:
123         - rm -f busybox.links *~ *.o core
124         - rm -rf _install
125         - cd tests && $(MAKE) clean
126         - rm -f docs/BusyBox.html docs/busybox.lineo.com/BusyBox.html \
127                 docs/BusyBox.1 docs/BusyBox.txt pod2html*
128
129 distclean: clean
130         - rm -f busybox
131         - cd tests && $(MAKE) distclean
132
133 install: busybox busybox.links
134         ./install.sh $(PREFIX)
135
136 dist release: distclean doc
137         cd ..;                                  \
138         rm -rf busybox-$(VERSION);              \
139         cp -a busybox busybox-$(VERSION);       \
140                                                 \
141         find busybox-$(VERSION)/ -type d        \
142                                  -name CVS      \
143                                  -print         \
144                 | xargs rm -rf;                 \
145                                                 \
146         find busybox-$(VERSION)/ -type f        \
147                                  -name .cvsignore \
148                                  -print         \
149                 | xargs rm -f;                  \
150                                                 \
151         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;