projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix for the wifi led on atheros SoC
[openwrt.git]
/
package
/
Makefile
diff --git
a/package/Makefile
b/package/Makefile
index
bf7090d
..
04b2912
100644
(file)
--- a/
package/Makefile
+++ b/
package/Makefile
@@
-12,7
+12,7
@@
include $(INCLUDE_DIR)/host.mk
all: compile
all: compile
-include $(TMP_DIR)/.p
kg
deps
+include $(TMP_DIR)/.p
ackage
deps
PREREQ_PACKAGES:=$(patsubst %,%-prereq,$(prereq-y) $(prereq-m))
DOWNLOAD_PACKAGES:=$(patsubst %,%-download,$(package-y) $(package-m))
PREREQ_PACKAGES:=$(patsubst %,%-prereq,$(prereq-y) $(prereq-m))
DOWNLOAD_PACKAGES:=$(patsubst %,%-download,$(package-y) $(package-m))
@@
-22,17
+22,20
@@
INSTALL_PACKAGES:=$(patsubst %,%-install,$(package-y))
$(STAMP_DIR) $(TARGET_DIR):
mkdir -p $@
$(STAMP_DIR) $(TARGET_DIR):
mkdir -p $@
-%-prereq: $(STAMP_DIR) $(TARGET_DIR)
- $(MAKE) -C $(patsubst %-prereq,%,$@) prereq
+ifeq ($(QUIET),1)
+%-compile %-install: FORCE
+ $(MAKE) -C $* $(patsubst $*-%,%,$@) || { $(call MESSAGE, "*** $* $(patsubst $*-%,%,$@) failed"); false; }
-$(eval $(call default_subtargets,$(TARGET_DIR)))
-
-ifeq ($(SDK),1)
-GENDEP_OPTS := -s
+%-prepare %-prereq %-download %-clean: FORCE
+else
+%-prepare %-prereq %-download %-clean %-compile %-install: FORCE
endif
endif
+ $(MAKE) -C $* $(patsubst $*-%,%,$@)
+
+# .IGNORE: $(COMPILE_PACKAGES)
-$(TMP_DIR)/.p
kgdeps: $(TMP_DIR)/.pkg
info
- @$(TOPDIR)/scripts/metadata.pl package_mk
$(GENDEP_OPTS)
< $< > $@ || rm -f $@
+$(TMP_DIR)/.p
ackagedeps: $(TMP_DIR)/.package
info
+ @$(TOPDIR)/scripts/metadata.pl package_mk < $< > $@ || rm -f $@
preconfig:
clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m))
preconfig:
clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m))
@@
-55,6
+58,9
@@
install:
IPKG_INSTROOT=$(BUILD_DIR)/root $(which bash) ./etc/rc.common $$script enable; \
done || true \
)
IPKG_INSTROOT=$(BUILD_DIR)/root $(which bash) ./etc/rc.common $$script enable; \
done || true \
)
+ @-find $(BUILD_DIR)/root -name CVS | xargs -r rm -rf
+ @-find $(BUILD_DIR)/root -name .svn | xargs -r rm -rf
+ @-find $(BUILD_DIR)/root -name '.#*' | xargs -r rm -f
index: $(PACKAGE_DIR)/Packages
index: $(PACKAGE_DIR)/Packages
This page took
0.026546 seconds
and
4
git commands to generate.