blob: 27ea8fd7f95f6d6f412bbbe02810a2c50f35cc59 [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001# Makefile for busybox
2#
Erik Andersen9ffdaa62000-02-11 21:55:04 +00003# Copyright (C) 1999-2000 Erik Andersen <andersee@debian.org>
4# Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org>
5#
Eric Andersenc4996011999-10-20 22:08:37 +00006# 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
Erik Andersen7c4b2f32000-02-29 21:49:22 +000021PROG := busybox
Eric Andersenc6cdf582000-06-21 22:50:59 +000022VERSION := 0.45
Erik Andersen1ad302a2000-03-24 00:54:46 +000023BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
John Beppucbd66282000-04-13 22:57:45 +000024export VERSION
Eric Andersencc8ed391999-10-05 16:24:54 +000025
Erik Andersenfac10d72000-02-07 05:29:42 +000026# Set the following to `true' to make a debuggable build.
27# Leave this set to `false' for production use.
Erik Andersen9ffdaa62000-02-11 21:55:04 +000028# eg: `make DODEBUG=true tests'
Eric Andersen854e1152000-06-13 06:57:56 +000029DODEBUG = false
Eric Andersen21943ce1999-10-13 18:04:51 +000030
Erik Andersenf3b3d172000-04-09 18:24:05 +000031# If you want a static binary, turn this on.
Erik Andersenc0dac182000-04-06 07:24:45 +000032DOSTATIC = false
Eric Andersencc8ed391999-10-05 16:24:54 +000033
Erik Andersen499f65f2000-05-16 20:07:38 +000034# 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
Eric Andersen28c88a92000-06-20 21:03:24 +000037#LDFLAGS+=-nostdlib
38#LIBRARIES = /home/andersen/CVS/uC-libc/libc.a
Erik Andersen499f65f2000-05-16 20:07:38 +000039
40
Erik Andersenfac10d72000-02-07 05:29:42 +000041CC = gcc
Eric Andersend80e8511999-11-16 00:46:00 +000042
Erik Andersen3d427ac2000-05-12 19:38:40 +000043# use '-Os' optimization if available, else use -O2
44OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
45 then echo "-Os"; else echo "-O2" ; fi)
Erik Andersenfac10d72000-02-07 05:29:42 +000046
47
Erik Andersen9ffdaa62000-02-11 21:55:04 +000048# Allow alternative stripping tools to be used...
49ifndef $(STRIPTOOL)
50 STRIPTOOL = strip
51endif
52
Eric Andersencc8ed391999-10-05 16:24:54 +000053# -D_GNU_SOURCE is needed because environ is used in init.c
Eric Andersen17d49ef1999-10-06 20:25:32 +000054ifeq ($(DODEBUG),true)
Eric Andersena44790f2000-06-28 20:11:28 +000055 CFLAGS += -Wall -g -D_GNU_SOURCE
Eric Andersen28c88a92000-06-20 21:03:24 +000056 LDFLAGS +=
Erik Andersen9ffdaa62000-02-11 21:55:04 +000057 STRIP =
Eric Andersen17d49ef1999-10-06 20:25:32 +000058else
Eric Andersena44790f2000-06-28 20:11:28 +000059 CFLAGS += -Wall $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
Eric Andersen28c88a92000-06-20 21:03:24 +000060 LDFLAGS += -s
Erik Andersen7c4b2f32000-02-29 21:49:22 +000061 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
Eric Andersena7093171999-10-23 05:42:08 +000062 #Only staticly link when _not_ debugging
63 ifeq ($(DOSTATIC),true)
Erik Andersenfac10d72000-02-07 05:29:42 +000064 LDFLAGS += --static
Erik Andersen23dea9b2000-05-13 00:28:25 +000065 #
66 #use '-ffunction-sections -fdata-sections' and '--gc-sections' if they work
67 #to try and strip out any unused junk. Doesn't do much for me, but you may
68 #want to give it a shot...
69 #
70 #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
Erik Andersen499f65f2000-05-16 20:07:38 +000071 # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) --gc-sections -v >/dev/null && echo 1),1)
72 # CFLAGS += -ffunction-sections -fdata-sections
73 # LDFLAGS += --gc-sections
Erik Andersen23dea9b2000-05-13 00:28:25 +000074 #endif
Eric Andersena7093171999-10-23 05:42:08 +000075 endif
Eric Andersen17d49ef1999-10-06 20:25:32 +000076endif
77
Eric Anderseneded54b1999-11-12 08:03:23 +000078ifndef $(PREFIX)
Erik Andersenfac10d72000-02-07 05:29:42 +000079 PREFIX = `pwd`/_install
Eric Andersen17d49ef1999-10-06 20:25:32 +000080endif
Eric Andersen17d49ef1999-10-06 20:25:32 +000081
Erik Andersen499f65f2000-05-16 20:07:38 +000082
Erik Andersene2729152000-02-18 21:34:17 +000083OBJECTS = $(shell ./busybox.sh) busybox.o messages.o utility.o
Erik Andersenfac10d72000-02-07 05:29:42 +000084CFLAGS += -DBB_VER='"$(VERSION)"'
85CFLAGS += -DBB_BT='"$(BUILDTIME)"'
Erik Andersend387d011999-12-21 02:55:11 +000086ifdef BB_INIT_SCRIPT
Erik Andersen9ffdaa62000-02-11 21:55:04 +000087 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
Erik Andersend387d011999-12-21 02:55:11 +000088endif
89
Eric Andersen53310252000-07-04 19:42:23 +000090all: busybox busybox.links olddoc #doc
Erik Andersen0a704e82000-05-03 03:19:06 +000091
Erik Andersen0a704e82000-05-03 03:19:06 +000092
Eric Andersen53310252000-07-04 19:42:23 +000093# New docs based on DOCBOOK SGML
94doc: docs/BusyBox.txt docs/BusyBox.html docs/BusyBox.pdf
95
96docs/BusyBox.txt: docs/busybox.sgml
Erik Andersen0a704e82000-05-03 03:19:06 +000097 @echo
98 @echo BusyBox Documentation
99 @echo
Eric Andersen53310252000-07-04 19:42:23 +0000100 (cd docs; sgmltools -b txt busybox.sgml)
Erik Andersen0a704e82000-05-03 03:19:06 +0000101
Eric Andersen53310252000-07-04 19:42:23 +0000102docs/BusyBox.dvi: docs/busybox.sgml
103 (cd docs; sgmltools -b dvi busybox.sgml)
104
105docs/BusyBox.ps: docs/BusyBox.dvi
106 (cd docs; sgmltools -b ps busybox.sgml)
107
108docs/BusyBox.pdf: docs/BusyBox.ps
109 (cd docs; ps2pdf busybox.ps)
110
111docs/busybox.lineo.com/BusyBox.html: docs/busybox.sgml
112 (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
Erik Andersen0a704e82000-05-03 03:19:06 +0000113
Eric Andersen60829172000-06-02 03:35:22 +0000114docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
Eric Andersen86ab8a32000-06-02 03:21:42 +0000115 - rm -f docs/BusyBox.html
116 - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
Eric Andersen60829172000-06-02 03:35:22 +0000117
Eric Andersen53310252000-07-04 19:42:23 +0000118
119# Old Docs...
120olddoc: olddoc/BusyBox.txt olddoc/BusyBox.1 olddoc/BusyBox.html
121
122olddoc/BusyBox.txt: docs/busybox.pod
123 @echo
124 @echo BusyBox Documentation
125 @echo
126 - pod2text docs/busybox.pod > docs/BusyBox.txt
127
128olddoc/BusyBox.1: docs/busybox.pod
129 - pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1
130
131olddoc/BusyBox.html: olddoc/busybox.lineo.com/BusyBox.html
132 - rm -f docs/BusyBox.html
133 - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
134
135olddoc/busybox.lineo.com/BusyBox.html: docs/busybox.pod
Eric Andersen2086e3d2000-07-04 22:17:01 +0000136 - pod2html --noindex docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
Erik Andersen0a704e82000-05-03 03:19:06 +0000137 - rm -f pod2html*
138
Eric Andersencc8ed391999-10-05 16:24:54 +0000139busybox: $(OBJECTS)
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000140 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000141 $(STRIP)
Erik Andersen1d1d9502000-04-21 01:26:49 +0000142
Erik Andersenfac10d72000-02-07 05:29:42 +0000143busybox.links: busybox.def.h
Eric Andersen96bcfd31999-11-12 01:30:18 +0000144 - ./busybox.mkll | sort >$@
Eric Andersen1667fb41999-11-27 20:34:28 +0000145
Erik Andersen1d1d9502000-04-21 01:26:49 +0000146regexp.o nfsmount.o cmdedit.o: %.o: %.h
Erik Andersena3e57ca2000-04-19 03:38:01 +0000147$(OBJECTS): %.o: busybox.def.h internal.h %.c Makefile
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000148
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000149test tests:
150 cd tests && $(MAKE) all
151
Eric Andersencc8ed391999-10-05 16:24:54 +0000152clean:
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000153 - rm -f busybox.links *~ *.o core
Eric Andersend00c2621999-12-07 08:37:31 +0000154 - rm -rf _install
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000155 - cd tests && $(MAKE) clean
Eric Andersen53310252000-07-04 19:42:23 +0000156 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
157 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
158 - rm -rf docs/busybox
Eric Andersencc8ed391999-10-05 16:24:54 +0000159
160distclean: clean
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000161 - rm -f busybox
162 - cd tests && $(MAKE) distclean
Eric Andersencc8ed391999-10-05 16:24:54 +0000163
Eric Andersen07274581999-11-21 21:50:07 +0000164install: busybox busybox.links
Eric Andersen80974fa1999-11-13 04:51:47 +0000165 ./install.sh $(PREFIX)
Eric Andersen17d49ef1999-10-06 20:25:32 +0000166
Erik Andersen0a704e82000-05-03 03:19:06 +0000167dist release: distclean doc
Erik Andersenfac10d72000-02-07 05:29:42 +0000168 cd ..; \
169 rm -rf busybox-$(VERSION); \
170 cp -a busybox busybox-$(VERSION); \
171 \
172 find busybox-$(VERSION)/ -type d \
173 -name CVS \
174 -print \
175 | xargs rm -rf; \
176 \
177 find busybox-$(VERSION)/ -type f \
178 -name .cvsignore \
179 -print \
180 | xargs rm -f; \
181 \
182 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;