3 # Copyright (C) 1999-2000 Erik Andersen <andersee@debian.org>
4 # Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org>
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.
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.
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
23 BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
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'
31 # If you want a static binary, turn this on.
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
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)
47 # Allow alternative stripping tools to be used...
52 # -D_GNU_SOURCE is needed because environ is used in init.c
53 ifeq ($(DODEBUG),true)
54 CFLAGS += -Wall -g -D_GNU_SOURCE
58 CFLAGS += -Wall $(OPTIMIZATION) -fomit-frame-pointer -fno-builtin -D_GNU_SOURCE
60 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
61 #Only staticly link when _not_ debugging
62 ifeq ($(DOSTATIC),true)
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...
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
78 PREFIX = `pwd`/_install
83 OBJECTS = $(shell ./busybox.sh) busybox.o messages.o utility.o
84 CFLAGS += -DBB_VER='"$(VERSION)"'
85 CFLAGS += -DBB_BT='"$(BUILDTIME)"'
87 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
90 all: busybox busybox.links doc
92 doc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
94 docs/BusyBox.txt: docs/busybox.pod
96 @echo BusyBox Documentation
98 - pod2text docs/busybox.pod > docs/BusyBox.txt
100 docs/BusyBox.1: docs/busybox.pod
101 - pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1
103 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
104 - rm -f docs/BusyBox.html
105 - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
107 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
108 - pod2html docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
112 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
115 busybox.links: busybox.def.h
116 - ./busybox.mkll | sort >$@
118 regexp.o nfsmount.o cmdedit.o: %.o: %.h
119 $(OBJECTS): %.o: busybox.def.h internal.h %.c Makefile
122 cd tests && $(MAKE) all
125 - rm -f busybox.links *~ *.o core
127 - cd tests && $(MAKE) clean
128 - rm -f docs/BusyBox.html docs/busybox.lineo.com/BusyBox.html \
129 docs/BusyBox.1 docs/BusyBox.txt pod2html*
133 - cd tests && $(MAKE) distclean
135 install: busybox busybox.links
136 ./install.sh $(PREFIX)
138 dist release: distclean doc
140 rm -rf busybox-$(VERSION); \
141 cp -a busybox busybox-$(VERSION); \
143 find busybox-$(VERSION)/ -type d \
148 find busybox-$(VERSION)/ -type f \
153 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;