aboutsummaryrefslogtreecommitdiff
path: root/Rules.mak (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - pin the CFLAGS to make sure that we don't have to re-evaluate theBernhard Reutner-Fischer2006-04-111-1/+1
| | | | check_gcc over and over again. Makes make -j work for me..
* - switch Warning Of the Week to wrong or missing prototypes.Bernhard Reutner-Fischer2006-04-021-5/+3
| | | | | | e.g. archival/uncompress.c wrongly includes libbb.h instead of busybox.h decompress_bunzip2.c,open_transformer.c don't include the proper "unarchive.h" etc, etc.
* - warn a bit more verbosely about fmt stuff for non-release versionsBernhard Reutner-Fischer2006-03-291-0/+8
|
* - mark trunk as 1.2.0-pre0Bernhard Reutner-Fischer2006-03-291-3/+3
|
* Mike Frysinger pointed out we can goRob Landley2006-03-281-5/+1
| | | | | | CFLAGS=-I/usr/some/funky/path/to/selinux \ LDFLAGS=-L/usr/some/funky/path/to/selinux make So Jan Kiszka reverted part of the selinux patch.
* Patch from Jan Kiszka: In case the libselinux development installation is notRob Landley2006-03-271-1/+5
| | | | | located at its default location, this patch allows to override the path via SELINUX_INC and SELINUX_LIB when invoking make.
* We make both busybox and busybox_unstripped all the time now, no need toRob Landley2006-03-221-5/+1
| | | | specify whether or not to strip the binary.
* Annoint 1.1.1.Rob Landley2006-03-221-1/+1
|
* - workaroung pr25795 in gcc-4.1Bernhard Reutner-Fischer2006-03-211-1/+2
| | | | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795
* - revert back to r14406Bernhard Reutner-Fischer2006-03-131-203/+109
|
* add a sep option for strippingMike Frysinger2006-03-101-1/+4
|
* - remove check. Fixes e.g. buildrootBernhard Reutner-Fischer2006-03-091-2/+0
|
* - backout using features which are not available with the previous stableBernhard Reutner-Fischer2006-03-091-24/+32
| | | | version of make (3.71.1).
* - correct comment.Bernhard Reutner-Fischer2006-03-031-1/+1
| | | | Should revisit gcc >= 4.1 with that =1 later on
* Denis Vlasenko noticed that falign=0 is meaningless, and that should probablyRob Landley2006-03-031-1/+1
| | | | be falign=1. Saves a little over 3k on an x86 "make defconfig" build.
* - make sure applets.o is rebuilt when the .config changes.Bernhard Reutner-Fischer2006-03-021-1/+1
| | | | | | | | | | - don't overwrite objects in the archive. Affected applets with name-clash mostly vs. libbb: iplink_main iproute_main iptunnel_main login_main run_parts_main
* - fixes parallel builds (make -j)Bernhard Reutner-Fischer2006-03-011-116/+198
| | | | - use less resources for the buildsystem itself
* make the build system puuuuuuuuuuurtyMike Frysinger2006-02-021-10/+55
|
* - pass -static via CC rather than LDBernhard Reutner-Fischer2006-01-311-12/+6
|
* Remove foo.txt and reenable -funsigned-char now that ash is fixed.Rob Landley2006-01-301-2/+1
|
* - add a macro to check for ld and as flagsBernhard Reutner-Fischer2006-01-271-6/+26
| | | | | | | Very unreliable as e.g the ld check will see the flags supported by each emulation, not just the active one. good enough for now.. Fix would be to crate one or more dummy .c files and accually try if a flag works.
* - correct flag for gcc-3.xBernhard Reutner-Fischer2006-01-241-1/+1
|
* ash with -funsigned-char don`t work!"Vladimir N. Oleynik"2006-01-231-1/+1
|
* - bump version to 1.1.1 nonrelease series (let's say -pre0).Bernhard Reutner-Fischer2006-01-191-2/+2
|
* - shared libbusybox.Bernhard Reutner-Fischer2006-01-151-2/+34
| | | | | - IMA compilation option (aka IPO, IPA,..) Please holler if i broke something..
* And lo, we hath reached Release Candidate 1. 1.1.0 should happen this week.Rob Landley2006-01-101-1/+1
|
* The rest of Yann E. Morin's install revamp.Rob Landley2005-12-151-0/+12
|
* - check if CC supports -funsigned-charBernhard Reutner-Fischer2005-12-131-1/+9
| | | | - add CC_MAJOR and CC_MINOR variables. (gcc centric for now)
* Make char default to "unsigned" on all platforms so we have a consistent baseRob Landley2005-12-011-2/+2
| | | | to deal with all the new gcc 4.0.2 warnings from.
* update licenseMike Frysinger2005-11-291-14/+2
|
* ShaneAnderson writes in Bug 565:Mike Frysinger2005-11-291-5/+5
| | | | | need to include .config file before setting CROSS otherwise TARGET_ARCH isnt set properly
* - split VERSION into partsBernhard Reutner-Fischer2005-10-131-1/+14
| | | | | | - add some filesystem operation wrapper variables for use in the makefiles and pull them in early in the toplevel makefile - use the cross-toolchain for "make sizes"
* - fix building out-of-tree;Bernhard Reutner-Fischer2005-10-051-11/+7
| | | | | | | | | | | | | | | | | to test, checkout the source (let's assume /scratch/src/busybox), then mkdir /tmp/bb ; cd /tmp/bb make top_srcdir=/scratch/src/busybox O="$(pwd)" -f /scratch/src/busybox/Makefile allyesconfig check - default to O=$(pwd) if no O was specified. Now you can just specify the top_srcdir (without O=/somewhere) to create the obj-tree in pwd. - make "make configtarget buildtarget" work. Previously this didn't work due to how HAVE_DOT_CONFIG was evaluated. Two separate steps were needed before, e.g. make config ; make busybox. - remove some unneeded variables from Rules.mak (BB_SRC_DIR from Mr. ldoolitt@recycle.lbl) which suggest that the stuff fixed above didn't work before. - move selinux libraries to where they belong (from Makefile to Rules.mak) - update the docs to mention svn instead of cvs and provide an example for building out-of-tree in INSTALL.
* - remove unused variable TOPDIRBernhard Reutner-Fischer2005-09-261-1/+1
|
* A bit overdue...Rob Landley2005-09-081-1/+1
|
* patch by pkj in Bug 3 to not export all make variablesMike Frysinger2005-07-311-4/+0
|
* move -s from LDFLAGS to STRIPCMDMike Frysinger2005-07-311-1/+1
|
* Fix "nm --size-sort" on the busybox binary and document how to make it work.Rob Landley2005-07-311-1/+1
|
* further refine check_gcc usage so it is only called the bare min number of timesMike Frysinger2005-07-281-4/+7
|
* dont output anything when running in silent modeMike Frysinger2005-07-281-0/+9
|
* From Rich Paul:Rob Landley2005-07-281-3/+2
| | | | | | | | | | | | | | | I've noticed that when I compile busybox on my laptop, it compiles more slowly than one would expect, and although it's a (more-or-less) multiprocessor system and I use -j5, make never seems to run more than one job at a time. I believe I have found the culprit:  each time a file is compiled, gcc runs about 5 times.  This is because the $(check_gcc) macros and the TARGET_ARCH macros are late binding. The attached patch cuts the compilation time by 66%, from 1.5 minutes to 30 seconds.  Your mileage may very.  These statements have not been evaluated by the FDA.
* use toplevel ARFLAGS and update default ARFLAGS to be quietMike Frysinger2005-07-271-1/+1
|
* Bump versionEric Andersen2004-10-081-1/+1
|
* egor duda writes:Eric Andersen2004-10-081-7/+3
| | | | | | | | | | | | | | | | | | | | | | | | Hi! I've created a patch to busybox' build system to allow building it in separate tree in a manner similar to kbuild from kernel version 2.6. That is, one runs command like 'make O=/build/some/where/for/specific/target/and/options' and everything is built in this exact directory, provided that it exists. I understand that applyingc such invasive changes during 'release candidates' stage of development is at best unwise. So, i'm currently asking for comments about this patch, starting from whether such thing is needed at all to whether it coded properly. 'make check' should work now, and one make creates Makefile in build directory, so one can run 'make' in build directory after that. One possible caveat is that if we build in some directory other than source one, the source directory should be 'distclean'ed first. egor
* Bump versionEric Andersen2004-08-161-1/+1
|
* bump version to -rc2Eric Andersen2004-07-261-1/+1
|
* Prepare for releaseEric Andersen2004-07-261-1/+1
|
* bump version to -rc2Eric Andersen2004-07-261-1/+1
|
* Bump version up to release candidate 1Eric Andersen2004-07-201-1/+1
|
* bump version, prepare for -pre101_00_pre10Eric Andersen2004-04-131-1/+1
|