mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
minor tweaks to the verbose system
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6936 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -16,18 +16,23 @@ include $(TMP_DIR)/.packagedeps
|
||||
|
||||
PREREQ_PACKAGES:=$(patsubst %,%-prereq,$(prereq-y) $(prereq-m))
|
||||
DOWNLOAD_PACKAGES:=$(patsubst %,%-download,$(package-y) $(package-m))
|
||||
COMPILE_PACKAGES:=$(patsubst %,%-compile,$(package-y) $(package-m))
|
||||
COMPILE_PACKAGES:=$(patsubst %,%-compile,$(package-m))
|
||||
INSTALL_PACKAGES:=$(patsubst %,%-install,$(package-y))
|
||||
|
||||
$(STAMP_DIR) $(TARGET_DIR):
|
||||
mkdir -p $@
|
||||
|
||||
ifeq ($(QUIET),1)
|
||||
%-compile %-install: FORCE
|
||||
$(MAKE) -C $* $(patsubst $*-%,%,$@) || { $(call MESSAGE, "*** $* $(patsubst $*-%,%,$@) failed"); false; }
|
||||
|
||||
%-prereq %-download %-clean: FORCE
|
||||
else
|
||||
%-prereq %-download %-clean %-compile %-install: FORCE
|
||||
endif
|
||||
$(MAKE) -C $* $(patsubst $*-%,%,$@)
|
||||
|
||||
%-prereq: $(STAMP_DIR) $(TARGET_DIR)
|
||||
%-prepare: $(TARGET_DIR)
|
||||
%-compile: %-prepare
|
||||
# .IGNORE: $(COMPILE_PACKAGES)
|
||||
|
||||
$(TMP_DIR)/.packagedeps: $(TMP_DIR)/.packageinfo
|
||||
@$(TOPDIR)/scripts/metadata.pl package_mk < $< > $@ || rm -f $@
|
||||
|
||||
Reference in New Issue
Block a user