From ed3ef50c233ffb1b50ea0e7382a8e60b86491009 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 27 Jan 2001 08:24:39 +0000 Subject: Fix header file usage -- there were many unnecessary header files included in busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik --- Makefile | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d5587ae4f..159e5d5f9 100644 --- a/Makefile +++ b/Makefile @@ -81,24 +81,19 @@ CROSS = CC = $(CROSS)gcc STRIPTOOL = $(CROSS)strip -# To compile vs an alternative libc, you may need to use/adjust -# the following lines to meet your needs. This is how I make -# busybox compile staticly with uClibc (needs BB_FEATURE_NFSMOUNT -# disabled at the moment). Note the _full_ path for LIBCDIR. -# This is because make doesn't do ~ expansion... -#LIBCDIR=/home/andersen/CVS/uClibc +# To compile vs uClibc, just use the compiler wrapper built by uClibc... +# Isn't that easy? Right now, uClibc needs BB_FEATURE_NFSMOUNT disabled +# since uClibc's nfs support isn't ready yet. +#CC = ../uClibc/extra/gcc-uClibc/gcc-uClibc-i386 + +# To compile vs some other alternative libc, you may need to use/adjust +# the following lines to meet your needs... +#LIBCDIR=/usr/i486-linuxlibc1/ #LDFLAGS+=-nostdlib #LIBRARIES = $(LIBCDIR)/libc.a -lgcc #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") -# This is how I compile with the uClibc shared lib... -#LIBCDIR=/home/andersen/CVS/uClibc -#LDFLAGS+=-nostdlib -#LIBRARIES = -luClibc -lgcc $(LIBCDIR)/crt0.o -#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") - #-------------------------------------------------------- # use '-Os' optimization if available, else use -O2 -- cgit v1.2.3