X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=Makefile;h=fc8ea56f7689c13e73c9e75bf85e3c1d54a0d74a;hb=dfb6211df36207a62ae39b9d3c670bb0dc1ebbd5;hp=f48fa9da3a259306b4715871258d34eb078b8296;hpb=fb24eb4f47b84a64a1fcc3cee7a6ecba1c7b8e58;p=oweals%2Fbusybox.git diff --git a/Makefile b/Makefile index f48fa9da3..fc8ea56f7 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Makefile for busybox # -# Copyright (C) 1999-2002 Erik Andersen +# Copyright (C) 1999-2003 by Erik Andersen # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,47 +17,49 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -TOPDIR:= $(shell /bin/pwd)/ -include $(TOPDIR).config -include $(TOPDIR)Rules.mak -SUBDIRS:=applets archival archival/libunarchive console-tools \ - editors fileutils findutils init miscutils modutils networking \ - procps pwd_grp pwd_grp/libpwd_grp shell shellutils sysklogd \ - textutils util-linux libbb +#-------------------------------------------------------------- +# You shouldn't need to mess with anything beyond this point... +#-------------------------------------------------------------- +noconfig_targets := menuconfig config oldconfig randconfig \ + defconfig allyesconfig allnoconfig clean distclean \ + release tags +TOPDIR=./ +include Rules.mak + +DIRS:=applets archival archival/libunarchive coreutils console-tools \ + debianutils editors findutils init miscutils modutils networking \ + networking/libiproute networking/udhcp procps loginutils shell \ + sysklogd util-linux libpwdgrp coreutils/libcoreutils libbb + +ifeq ($(strip $(CONFIG_SELINUX)),y) +CFLAGS += -I/usr/include/selinux +LIBRARIES += -lsecure +endif -all: do-it-all +CONFIG_CONFIG_IN = sysdeps/$(TARGET_OS)/Config.in +CONFIG_DEFCONFIG = sysdeps/$(TARGET_OS)/defconfig -# -# Make "config" the default target if there is no configuration file or -# "depend" the target if there is no top-level dependency information. -ifeq (.config,$(wildcard .config)) -include .config -ifeq (.depend,$(wildcard .depend)) -include .depend -do-it-all: busybox busybox.links #doc -include $(patsubst %,%/Makefile.in, $(SUBDIRS)) -else -CONFIGURATION = depend -do-it-all: depend -endif -else -CONFIGURATION = menuconfig -do-it-all: menuconfig -endif +ifeq ($(strip $(HAVE_DOT_CONFIG)),y) +all: busybox busybox.links doc -busybox: depend $(libraries-y) - $(CC) $(LDFLAGS) $(libraries-y) $(LIBRARIES) -o $@ +# In this section, we need .config +-include .config.cmd +include $(patsubst %,%/Makefile.in, $(DIRS)) + +busybox: .depend include/config.h $(libraries-y) + $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group $(STRIPCMD) $@ -busybox.links: applets/busybox.mkll +busybox.links: applets/busybox.mkll include/config.h - $(SHELL) $^ >$@ install: applets/install.sh busybox busybox.links $(SHELL) $< $(PREFIX) -uninstall: busybox busybox.links - for i in `cat busybox.links` ; do rm -f $$PREFIX$$i; done +uninstall: busybox.links + rm -f $(PREFIX)/bin/busybox + for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done install-hardlinks: applets/install.sh busybox busybox.links $(SHELL) $< $(PREFIX) --hardlinks @@ -124,131 +126,134 @@ docs/busybox/busyboxdocumentation.html: docs/busybox.sgml - mkdir -p docs (cd docs/busybox.net; sgmltools -b html ../busybox.sgml) - - # The nifty new buildsystem stuff -$(TOPDIR)scripts/mkdep: scripts/mkdep.c +scripts/mkdep: scripts/mkdep.c $(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c -$(TOPDIR)scripts/split-include: scripts/split-include.c +scripts/split-include: scripts/split-include.c $(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c -$(TOPDIR).depend: $(TOPDIR)scripts/mkdep +.depend: scripts/mkdep rm -f .depend .hdepend; - mkdir -p $(TOPDIR)include/config; + mkdir -p include/config; $(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c - scripts/mkdep -I $(TOPDIR)include -- \ - `find $(TOPDIR) -name \*.c -print` >> .depend; - scripts/mkdep -I $(TOPDIR)include -- \ - `find $(TOPDIR) -name \*.h -print` >> .hdepend; - $(MAKE) $(patsubst %,_sfdep_%,$(SUBDIRS)) _FASTDEP_ALL_SUB_DIRS="$(SUBDIRS)" ; - @ echo -e "\n\nNow run 'make' to build BusyBox\n\n" - -depend dep: $(TOPDIR)include/config.h $(TOPDIR).depend + scripts/mkdep -I include -- \ + `find . -name \*.c -print` >> .depend; + scripts/mkdep -I include -- \ + `find . -name \*.h -print` >> .hdepend; + $(MAKE) $(patsubst %,_sfdep_%,$(DIRS)) _FASTDEP_ALL_SUB_DIRS="$(DIRS)" ; -BB_SHELL := ${shell if [ -x "$$BASH" ]; then echo $$BASH; \ - else if [ -x /bin/bash ]; then echo /bin/bash; \ - else echo sh; fi ; fi} +depend dep: include/config.h .depend -include/config/MARKER: depend $(TOPDIR)scripts/split-include +include/config/MARKER: depend scripts/split-include scripts/split-include include/config.h include/config @ touch include/config/MARKER -$(TOPDIR)include/config.h: - @if [ ! -f $(TOPDIR)include/config.h ] ; then \ - make oldconfig; \ +include/config.h: .config + @if [ ! -x ./scripts/config/conf ] ; then \ + $(MAKE) -C scripts/config conf; \ fi; + @./scripts/config/conf -o $(CONFIG_CONFIG_IN) -menuconfig: - mkdir -p $(TOPDIR)include/config - $(MAKE) -C scripts/lxdialog all - $(BB_SHELL) scripts/Menuconfig sysdeps/$(TARGET_OS)/config.in +%.o: %.c + $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< -config: - mkdir -p $(TOPDIR)include/config - $(BB_SHELL) scripts/Configure sysdeps/$(TARGET_OS)/config.in +finished2: + @echo + @echo Finished installing... + @echo -oldconfig: - mkdir -p $(TOPDIR)include/config - $(BB_SHELL) scripts/Configure -d sysdeps/$(TARGET_OS)/config.in +else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) +all: menuconfig -ifdef CONFIGURATION -..$(CONFIGURATION): - @echo - @echo "You have a bad or nonexistent" .$(CONFIGURATION) ": running 'make" $(CONFIGURATION)"'" - @echo - $(MAKE) $(CONFIGURATION) - @echo - @echo "Successful. Try re-making (ignore the error that follows)" - @echo - exit 1 +# configuration +# --------------------------------------------------------------------------- -dummy: +scripts/config/conf: + $(MAKE) -C scripts/config conf + -@if [ ! -f .config ] ; then \ + cp $(CONFIG_DEFCONFIG) .config; \ + fi +scripts/config/mconf: + $(MAKE) -C scripts/config ncurses conf mconf + -@if [ ! -f .config ] ; then \ + cp $(CONFIG_DEFCONFIG) .config; \ + fi -else +menuconfig: scripts/config/mconf + @./scripts/config/mconf $(CONFIG_CONFIG_IN) -dummy: +config: scripts/config/conf + @./scripts/config/conf $(CONFIG_CONFIG_IN) -endif +oldconfig: scripts/config/conf + @./scripts/config/conf -o $(CONFIG_CONFIG_IN) +randconfig: scripts/config/conf + @./scripts/config/conf -r $(CONFIG_CONFIG_IN) -%.o: %.c - $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< +allyesconfig: scripts/config/conf + @./scripts/config/conf -y $(CONFIG_CONFIG_IN) + +allnoconfig: scripts/config/conf + @./scripts/config/conf -n $(CONFIG_CONFIG_IN) +defconfig: scripts/config/conf + @./scripts/config/conf -d $(CONFIG_CONFIG_IN) -# Testing... -test tests: - # old way of doing it - #cd tests && $(MAKE) all - # new way of doing it +test tests: busybox + # Note that 'tests' is depricated. Use 'make check' instead + # To use the nice new testsuite.... cd tests && ./tester.sh -# Cleanup +check: busybox + cd testsuite && ./runtest + clean: - $(MAKE) -C tests clean - - $(MAKE) -C scripts/lxdialog clean - - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ - docs/busybox.net/BusyBox.html - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \ - docs/busybox.pdf docs/busybox.net/busybox.html \ - docs/busybox _install pod2htm* *.gdb *.elf *~ core - - rm -f busybox busybox.links libbb/loop.h .config.old .hdepend - - rm -f scripts/split-include scripts/mkdep .*config.log - - rm -rf include/config include/config.h - - find -name .\*.flags -exec rm -f {} \; - - find -name .depend -exec rm -f {} \; - - find -name \*.o -exec rm -f {} \; - - find -name \*.a -exec rm -f {} \; + docs/busybox.pdf docs/busybox.pod docs/busybox.net/busybox.html \ + docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \ + docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ + docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \ + .config.old .hdepend busybox + - rm -rf _install + - find . -name .\*.flags -exec rm -f {} \; + - find . -name \*.o -exec rm -f {} \; + - find . -name \*.a -exec rm -f {} \; distclean: clean - - rm -f busybox - - cd tests && $(MAKE) distclean + - rm -f scripts/split-include scripts/mkdep + - rm -rf include/config include/config.h + - find . -name .depend -exec rm -f {} \; + rm -f .config .config.old .config.cmd + - $(MAKE) -C scripts/config clean -dist release: distclean doc +release: distclean #doc cd ..; \ - rm -rf busybox-$(VERSION); \ - cp -a busybox busybox-$(VERSION); \ + rm -rf $(PROG)-$(VERSION); \ + cp -a busybox $(PROG)-$(VERSION); \ \ - find busybox-$(VERSION)/ -type d \ + find $(PROG)-$(VERSION)/ -type d \ -name CVS \ -print \ -exec rm -rf {} \; ; \ \ - find busybox-$(VERSION)/ -type f \ + find $(PROG)-$(VERSION)/ -type f \ -name .\#* \ -print \ -exec rm -f {} \; ; \ \ - tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; + tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; +tags: + ctags -R . -.PHONY: tags check depend +endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) -tags: - ctags -R . +.PHONY: dummy subdirs release distclean clean config oldconfig \ + menuconfig tags check test tests depend -check: busybox - cd testsuite && ./runtest