aboutsummaryrefslogtreecommitdiffstats
path: root/target/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* target: do not make target/*/install depend on target/*/compile - removes ↵Felix Fietkau2012-06-061-4/+1
| | | | | | one redundant kernel build dir call on target/install git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32091 3c298f89-4303-0410-b956-a3cf2f4a3e73
* imagebuilder: fix parallel building (closes #11117)Gabor Juhos2012-03-131-1/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30927 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add a target (CONFIG_MAKE_CONFIG) that creates an exportable toolchain. The ↵Felix Fietkau2009-11-141-2/+2
| | | | | | | | toolchain will zipped and saved under $(TOPDIR)/bin directory. Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18419 3c298f89-4303-0410-b956-a3cf2f4a3e73
* some more build system cleanupFelix Fietkau2008-08-171-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12329 3c298f89-4303-0410-b956-a3cf2f4a3e73
* large improvement for parallel builds. works without V=99 now and without ↵Felix Fietkau2008-06-091-0/+1
| | | | | | warnings. tested with -j on an 2x dual core opteron machine git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11414 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix a dependency bugFelix Fietkau2007-08-301-5/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8561 3c298f89-4303-0410-b956-a3cf2f4a3e73
* only build sdk and imagebuilder at target/install timeFelix Fietkau2007-07-311-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8257 3c298f89-4303-0410-b956-a3cf2f4a3e73
* next round of cleanup, convert target/ - make -j works now ;)Felix Fietkau2007-07-301-45/+13
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8242 3c298f89-4303-0410-b956-a3cf2f4a3e73
* don't run the image prereq check if the image directory does not existFelix Fietkau2007-07-161-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7988 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Rename 'refresh' to 'update' and make the new 'refresh' actually refresh all ↵Felix Fietkau2007-06-041-1/+1
| | | | | | | | | the patches. Also added a target package/refresh which will do this to all packages in the buildroot git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7488 3c298f89-4303-0410-b956-a3cf2f4a3e73
* implement quilt handling for the kernel tree ... and there was much rejoicing!Felix Fietkau2007-06-031-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7474 3c298f89-4303-0410-b956-a3cf2f4a3e73
* the default_subtargets template was a bad idea, since different makefiles ↵Felix Fietkau2007-04-181-1/+2
| | | | | | require different types of dependencies for subtargets. nuke it... git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7003 3c298f89-4303-0410-b956-a3cf2f4a3e73
* use default_subtargets in package/Makefile and target/MakefileFelix Fietkau2007-02-261-11/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6380 3c298f89-4303-0410-b956-a3cf2f4a3e73
* clean up a few things in image build makefiles and fix unnecessary grub rebuildsFelix Fietkau2007-02-251-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6360 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Fix config checks for Image Builder and SDK - only build them when requested.Felix Fietkau2007-01-141-1/+9
| | | | | | | Clear all packages from bin/packages at the beginning of package/compile when the Image Builder is selected, because the Image Builder can't handle multiple versions of the same package. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6102 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add initial version of the new Image BuilderFelix Fietkau2007-01-101-6/+8
| | | | | | | It's still a bit rough in a few places, but it seems to work for Broadcom at least - other targets untested. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6071 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move target/utils to tools/firmware-utilsFelix Fietkau2006-12-061-2/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5702 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move target/image/platform to target/linux/platform/imageMike Baker2006-11-281-4/+7
| | | | | | | platform directories are now self contained git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5669 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add prereq checks for target/linux/* and target/image/*, check for fdisk for ↵Felix Fietkau2006-11-181-0/+4
| | | | | | the x86 builds git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5569 3c298f89-4303-0410-b956-a3cf2f4a3e73
* leave out the ccache directory when copying the staging dir into the sdk (#843)Felix Fietkau2006-10-141-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5081 3c298f89-4303-0410-b956-a3cf2f4a3e73
* change 'source' to 'download'Mike Baker2006-07-201-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4176 3c298f89-4303-0410-b956-a3cf2f4a3e73
* credit where credit is dueMike Baker2006-06-271-0/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4091 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move target/linux/image to target/imageFelix Fietkau2006-06-211-2/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4040 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix and enable the sdkFelix Fietkau2006-06-211-4/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4037 3c298f89-4303-0410-b956-a3cf2f4a3e73
* build system cleanup. move shared include files into $(TOPDIR)/include, move ↵Felix Fietkau2006-06-211-7/+2
| | | | | | lzma, mkfs.* into toolchain/ git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4032 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add target/downloadFelix Fietkau2006-06-201-1/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4030 3c298f89-4303-0410-b956-a3cf2f4a3e73
* cleanup; replace .PHONY with FORCE; disable gdb by defaultFelix Fietkau2006-05-311-5/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3877 3c298f89-4303-0410-b956-a3cf2f4a3e73
* disable target/linux/packageFelix Fietkau2006-05-311-3/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3856 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove old trace/verbose junkFelix Fietkau2006-05-101-6/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3755 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix make target/linux/package/*-cleanFelix Fietkau2006-02-241-2/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3271 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix "make target/linux/package/*-*" targetsMike Baker2006-01-311-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3103 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix trace targets to actually display correct target namesMike Baker2006-01-141-5/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2970 3c298f89-4303-0410-b956-a3cf2f4a3e73
* call target/linux/prepare from target/prepareFelix Fietkau2006-01-131-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2961 3c298f89-4303-0410-b956-a3cf2f4a3e73
* large build system cleanup. added some stuff to control the verbosity level, ↵Felix Fietkau2005-10-221-0/+6
| | | | | | but not complete, yet. git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2221 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add new image builderFelix Fietkau2005-08-141-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1661 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove unused variableWaldemar Brodkorb2005-07-201-3/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1507 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move target/default/target_skeleton into package/base-files, put all the ↵Felix Fietkau2005-07-171-27/+2
| | | | | | default files in ipkg packages, cleanup some junk in toolchain/, toolchain/ no longer changes build_mipsel/root git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1494 3c298f89-4303-0410-b956-a3cf2f4a3e73
* cleanup in target/Felix Fietkau2005-06-111-51/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1205 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add rebuild target for the linux directoryFelix Fietkau2005-06-051-1/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1149 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move package/linux into target/linux, use wbx' new kernel code. support ↵Felix Fietkau2005-05-281-10/+10
| | | | | | building images with more than one kernel, split kernel module parts off of packages that use their own kernel modules (fuse, shfs, openswan). some cleanup in the image building process in target/. image builder is disabled for now, needs some fixing. git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1085 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix sdk buildFelix Fietkau2005-04-211-5/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@699 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add lzma to compile chainMike Baker2005-04-211-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@695 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add openwrt image builder to sdkFelix Fietkau2005-04-201-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@688 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add some fixes for parallel build (does not work with -j4 yet, but it gets ↵Felix Fietkau2005-04-081-0/+1
| | | | | | most packages compiled now) git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@577 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove lzma loader config option (make it default) and move it from package/ ↵Felix Fietkau2005-04-021-12/+2
| | | | | | to target/ git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@530 3c298f89-4303-0410-b956-a3cf2f4a3e73
* lzma loader patch from oleg, great thanks good work, saves another 300 kb ↵Waldemar Brodkorb2005-04-021-1/+15
| | | | | | flashmemory git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@513 3c298f89-4303-0410-b956-a3cf2f4a3e73
* enable CONFIG_NET_RADIOMike Baker2005-03-291-0/+8
| | | | | | | add preliminary motorola support git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@471 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove link before creation, otherwise rebuild failsWaldemar Brodkorb2005-03-231-81/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@420 3c298f89-4303-0410-b956-a3cf2f4a3e73
* please quit breaking thingsMike Baker2005-03-201-0/+165
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@398 3c298f89-4303-0410-b956-a3cf2f4a3e73