summaryrefslogtreecommitdiffstats
path: root/rules.mk
Commit message (Collapse)AuthorAgeFilesLines
* add support for an optional staging directory for debug binariesFelix Fietkau2009-01-131-0/+1
| | | | SVN-Revision: 14018
* add support for alternative C libraries (currently only glibc/eglibc) other ↵Nicolas Thill2009-01-081-10/+13
| | | | | | (related) changes: - kernel headers are now installed using "make headers_install" on 2.6 - target names now contain an openwrt "vendor" tag (e.g. mips-openwrt-linux-gnu) - build directory names now contain gcc/libc name/version - default cpu for x86 is now i486 (required to build glibc/eglibc) SVN-Revision: 13931
* add the make variable LIBGCC_S, which points to the correct libgcc ldflag ↵Felix Fietkau2009-01-061-0/+1
| | | | | | (avr32 only has a static library, most targets use the dynamic one) SVN-Revision: 13892
* fix whitespace order in cflags without CONFIG_DEBUG to prevent breakage in ↵Felix Fietkau2008-09-131-1/+1
| | | | | | some packages' configure step SVN-Revision: 12601
* Revert r12510. Remove -rpath-link form TARGET_LDFLAGS as it breaks some ↵Lars-Peter Clausen2008-09-131-3/+4
| | | | | | packages. SVN-Revision: 12597
* add new option for enabling debugging symbolsFelix Fietkau2008-09-131-2/+2
| | | | SVN-Revision: 12591
* add -rpath-link to TARGET_LDFLAGS by defaultFelix Fietkau2008-09-031-1/+1
| | | | SVN-Revision: 12510
* add TARGET_CXX variable which points to the c++ cross compilerFelix Fietkau2008-09-011-1/+2
| | | | SVN-Revision: 12466
* rework parallel building to get rid of some warnings and add back support ↵Felix Fietkau2008-08-161-1/+1
| | | | | | for parallelizing the kernel build fixes #3882 SVN-Revision: 12322
* add a variable that contains the proper architecture-dependent -fPIC/-fpic ↵Felix Fietkau2008-08-061-0/+6
| | | | | | cflag for building shared libraries SVN-Revision: 12224
* add helper macro for stripping the last part of a version numberFelix Fietkau2008-07-311-0/+1
| | | | SVN-Revision: 12054
* Native toolchain does not support -fhonour-copts, do not add it to the ↵Florian Fainelli2008-07-191-5/+6
| | | | | | TARGET_CFLAGS SVN-Revision: 11874
* adds missing patch for native toolchainJohn Crispin2008-06-101-5/+9
| | | | SVN-Revision: 11425
* large improvement for parallel builds. works without V=99 now and without ↵Felix Fietkau2008-06-091-5/+6
| | | | | | warnings. tested with -j on an 2x dual core opteron machine SVN-Revision: 11414
* $(TARGET) is not anymore, replace it with $(ARCH) in ./bin/packages ↵Nicolas Thill2008-04-151-1/+1
| | | | | | subdirectories until we find something better SVN-Revision: 10840
* revert ARM to oabi by default, add some eabi patches for fixing up the ↵Felix Fietkau2008-02-141-2/+2
| | | | | | toolchain, which unfortunately break eabi userland, but are IMHO a necessary basis for further eabi fixes SVN-Revision: 10458
* add $(TOOLCHAIN_DIR)/lib to $(TARGET_LDFLAGS) to ensure that all packages ↵Felix Fietkau2008-01-141-1/+1
| | | | | | process this correctly - fixes build errors with openldap/php5 SVN-Revision: 10190
* fixup softfloat handlingImre Kaloz2007-12-281-0/+7
| | | | SVN-Revision: 10003
* add $(STAGING_DIR)/host, which contains target specific, but host executable ↵Felix Fietkau2007-12-271-1/+1
| | | | | | files SVN-Revision: 9939
* remove $(STAGING_DIR)/usr/bin from $(TARGET_PATH)Felix Fietkau2007-12-231-1/+1
| | | | SVN-Revision: 9851
* hopefully fix occasional uClibc/gcc build failuresFelix Fietkau2007-12-131-2/+2
| | | | SVN-Revision: 9717
* fix hostapd rebuild check, isolate the common src/ directory for hostapd ↵Felix Fietkau2007-11-171-6/+4
| | | | | | variants as well to fix compile errors when both variants are selected (#2722) SVN-Revision: 9575
* fix config change detect for hostapdFelix Fietkau2007-11-161-1/+4
| | | | SVN-Revision: 9565
* add config symbols for the kernel versionFelix Fietkau2007-11-101-0/+4
| | | | SVN-Revision: 9520
* fix empty download dir errorFelix Fietkau2007-10-291-1/+1
| | | | SVN-Revision: 9462
* Treat i686 as an i386 if present, fixes build errors with wireless-tools on ↵Florian Fainelli2007-10-241-1/+1
| | | | | | i686 (x86 mediacenter) SVN-Revision: 9439
* refreshed madwifi patchesJohn Crispin2007-10-201-0/+4
| | | | SVN-Revision: 9380
* add possibility to set default .config valuesJohn Crispin2007-10-141-1/+1
| | | | SVN-Revision: 9300
* changed the -fhonours-copts gcc patch, such that the function needs to be ↵John Crispin2007-10-071-0/+1
| | | | | | turned on explicitly SVN-Revision: 9167
* export STAGING_DIRFelix Fietkau2007-10-061-0/+1
| | | | SVN-Revision: 9160
* Refactor downloading code into download.mk Support multiple file downloads ↵Felix Fietkau2007-09-291-1/+4
| | | | | | Support svn downloads SVN-Revision: 9057
* major target cleanup. it is now possible to have subtargets that can ↵Felix Fietkau2007-09-081-3/+7
| | | | | | override many target settings, including arch - merge adm5120, adm5120eb. target profiles still need to be adapted for subtargets SVN-Revision: 8694
* move TARGET_* flags from ./include/package-default.mk to ./rules.mk, remove ↵Nicolas Thill2007-09-031-4/+2
| | | | | | EXTRA_* flags but still use them in configure and make SVN-Revision: 8592
* move ipkg related vars from ./rules.mk to ./include/package-ipkg.mkNicolas Thill2007-09-031-12/+0
| | | | SVN-Revision: 8581
* remove uneeded PATH setting in ipkg invocationNicolas Thill2007-09-031-3/+2
| | | | SVN-Revision: 8580
* clean up recursive dependency handling, use timestamp.pl again, because it ↵Felix Fietkau2007-08-301-0/+2
| | | | | | saves memory and execution time SVN-Revision: 8558
* add back STAGING_DIR/usr/bin to TARGET_PATH until all library packages that ↵Nicolas Thill2007-08-191-1/+1
| | | | | | install *-config scripts there are fixed SVN-Revision: 8429
* build system cleanup/restructuring as described in ↵Felix Fietkau2007-08-071-28/+36
| | | | | | http://lists.openwrt.org/pipermail/openwrt-devel/2007-August/001159.html SVN-Revision: 8362
* Port the mbsd_multi patch from freewrt, which adds -fhonour-copts. This will ↵Felix Fietkau2007-07-311-1/+1
| | | | | | emit warnings in packages that don't use our target cflags properly SVN-Revision: 8256
* more build system cleanupFelix Fietkau2007-07-281-1/+0
| | | | SVN-Revision: 8206
* Add optionnal support for a BUILD_DIR suffix (#2057)Florian Fainelli2007-07-191-1/+2
| | | | SVN-Revision: 8050
* don't include .config if DUMP is setFelix Fietkau2007-06-261-1/+3
| | | | SVN-Revision: 7738
* Remove a debug statement from trx.c, add config changes for at91Hamish Guthrie2007-06-041-1/+2
| | | | SVN-Revision: 7491
* the default_subtargets template was a bad idea, since different makefiles ↵Felix Fietkau2007-04-181-21/+0
| | | | | | require different types of dependencies for subtargets. nuke it... SVN-Revision: 7003
* Improved autorebuild for kernel related stuff. - make modules_install in the ↵Felix Fietkau2007-04-181-1/+1
| | | | | | kernel tree is no longer called - make modules is called on every target/compile run - kmod packages pull the kernel modules directly out of the kernel tree and have proper file depends on them SVN-Revision: 6998
* revert [6857] for rules.mk; make cannot parse dependancies properlyMike Baker2007-04-041-3/+11
| | | | SVN-Revision: 6860
* Tidy up MakefilesMike Baker2007-04-031-11/+3
| | | | SVN-Revision: 6857
* Added rule for objdump Added support for AT91 SD-Card in primary bootloader ↵Hamish Guthrie2007-03-221-1/+2
| | | | | | (romboot) SVN-Revision: 6638
* clean up stampfile mess for tools/ and toolchain/Felix Fietkau2007-02-251-0/+20
| | | | SVN-Revision: 6357
* more fixes for rstrip.sh and kernel modules - fixes #1301Felix Fietkau2007-02-091-1/+2
| | | | SVN-Revision: 6280