summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-05-10 20:57:35 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-05-10 20:57:35 +0000
commit7d563990444cf27df1590f1c2404713d289d8646 (patch)
tree819256692a2921f488441db5319b36a85a966d9b
parente3c13ef5ddd89beedb70b05092387b50228174dc (diff)
change phony targets to FORCE (easier to read)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3757 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--Makefile13
-rw-r--r--package/rules.mk21
2 files changed, 16 insertions, 18 deletions
diff --git a/Makefile b/Makefile
index ec1e3677a..c323a9c24 100644
--- a/Makefile
+++ b/Makefile
@@ -38,21 +38,19 @@ endif
endif
export OPENWRTVERSION
-.pkginfo:
+.pkginfo: FORCE
+ifeq ($(shell ./scripts/timestamp.pl -p .pkginfo package),package)
@echo Collecting package info...
@-for makefile in package/*/Makefile; do \
echo Source-Makefile: $$makefile; \
$(MAKE) DUMP=1 -f $$makefile 2>&- || true; \
done > $@
-
-ifeq ($(shell ./scripts/timestamp.pl -p .pkginfo package),package)
-.pkginfo: pkginfo-clean
endif
.config.in: .pkginfo
./scripts/gen_menuconfig.pl < $< > $@ || rm -f $@
-pkginfo-clean:
+pkginfo-clean: FORCE
-rm -f .pkginfo .config.in
scripts/config/mconf: .config.in
@@ -70,6 +68,5 @@ config: scripts/config/conf
config-clean:
$(MAKE) -C scripts/config clean
-.PHONY: pkginfo-clean
-
-
+.PHONY: FORCE
+FORCE:
diff --git a/package/rules.mk b/package/rules.mk
index 540b14f63..3d2f957d3 100644
--- a/package/rules.mk
+++ b/package/rules.mk
@@ -240,20 +240,21 @@ else
$(PACKAGE_DIR):
mkdir -p $@
-source: $(DL_DIR)/$(PKG_SOURCE)
-prepare: $(PKG_BUILD_DIR)/.prepared
-configure: $(PKG_BUILD_DIR)/.configured
+source: FORCE $(DL_DIR)/$(PKG_SOURCE)
+prepare: FORCE $(PKG_BUILD_DIR)/.prepared
+configure: FORCE $(PKG_BUILD_DIR)/.configured
-compile-targets:
-compile: compile-targets
+compile-targets: FORCE
+compile: FORCE compile-targets
-install-targets:
-install: install-targets
+install-targets: FORCE
+install: FORCE install-targets
-clean-targets:
-clean:
+clean-targets: FORCE
+clean: FORCE
@$(MAKE) clean-targets
rm -rf $(PKG_BUILD_DIR)
endif
-.PHONY: all source prepare compile install clean dumpinfo compile-targets install-targets clean-targets
+.PHONY: FORCE
+FORCE: