projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add acm usb modem modul
[openwrt.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index
e966188
..
1b8d968
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-61,8
+61,11
@@
toolchain_install:
#
##############################################################
#
##############################################################
-package_install: toolchain
- $(MAKE) -C package compile install
+package_compile: target_compile
+ $(MAKE) -C package compile
+
+package_install: package_compile toolchain
+ $(MAKE) -C package install
#############################################################
#
#############################################################
#
@@
-71,7
+74,6
@@
package_install: toolchain
#
#############################################################
#
#############################################################
-
# In this section, we need .config
include .config.cmd
# In this section, we need .config
include .config.cmd
@@
-91,6
+93,9
@@
package_index:
target_prepare:
$(MAKE) -C target prepare
target_prepare:
$(MAKE) -C target prepare
+target_compile:
+ $(MAKE) -C target compile
+
target_install:
$(MAKE) -C target install
target_install:
$(MAKE) -C target install
@@
-102,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
@@
-114,6
+129,7
@@
image_clean:
target_clean: image_clean
rm -rf $(TARGET_DIR)
target_clean: image_clean
rm -rf $(TARGET_DIR)
+ rm -rf $(BUILD_DIR)/linux-*/root
clean: target_clean
@$(MAKE) -C $(CONFIG) clean
clean: target_clean
@$(MAKE) -C $(CONFIG) clean
This page took
0.020605 seconds
and
4
git commands to generate.