mirror of https://github.com/hak5/openwrt.git
add target package/target_name to the master makefile, which will run $(MAKE) -C package target_name. same for target/ and toolchain/
SVN-Revision: 1147lede-17.01
parent
0ab6153f25
commit
de60731de3
|
@ -74,7 +74,6 @@ package_install: package_compile toolchain
|
|||
#
|
||||
#############################################################
|
||||
|
||||
|
||||
# In this section, we need .config
|
||||
include .config.cmd
|
||||
|
||||
|
@ -108,6 +107,16 @@ $(BUILD_DIR):
|
|||
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue