mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 15:26:14 +02:00
add target package/target_name to the master makefile, which will run $(MAKE) -C package target_name. same for target/ and toolchain/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1147 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2ad1bb149c
commit
46862b86f0
@ -74,7 +74,6 @@ package_install: package_compile toolchain
|
|||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
|
|
||||||
# In this section, we need .config
|
# In this section, we need .config
|
||||||
include .config.cmd
|
include .config.cmd
|
||||||
|
|
||||||
@ -108,6 +107,16 @@ $(BUILD_DIR):
|
|||||||
|
|
||||||
source: $(TARGETS_SOURCE)
|
source: $(TARGETS_SOURCE)
|
||||||
|
|
||||||
|
|
||||||
|
package/%:
|
||||||
|
$(MAKE) -C package $(patsubst package/%,%,$@)
|
||||||
|
|
||||||
|
target/%:
|
||||||
|
$(MAKE) -C target $(patsubst target/%,%,$@)
|
||||||
|
|
||||||
|
toolchain/%:
|
||||||
|
$(MAKE) -C toolchain $(patsubst toolchain/%,%,$@)
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
#
|
#
|
||||||
# Cleanup and misc junk
|
# Cleanup and misc junk
|
||||||
|
Loading…
Reference in New Issue
Block a user