diff options
author | Mike Baker <mbm@openwrt.org> | 2006-05-10 20:57:35 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-05-10 20:57:35 +0000 |
commit | 043df621505fb501fb61e838c96cb40ef7a825ca (patch) | |
tree | f95f3911ea24e7d8434b3b44a3a9aa27ae41b1fc /openwrt/Makefile | |
parent | a5b8312036b11480bc91777399f3998f437b8dfa (diff) | |
download | mtk-20170518-043df621505fb501fb61e838c96cb40ef7a825ca.zip mtk-20170518-043df621505fb501fb61e838c96cb40ef7a825ca.tar.gz mtk-20170518-043df621505fb501fb61e838c96cb40ef7a825ca.tar.bz2 |
change phony targets to FORCE (easier to read)
SVN-Revision: 3757
Diffstat (limited to 'openwrt/Makefile')
-rw-r--r-- | openwrt/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/openwrt/Makefile b/openwrt/Makefile index ec1e367..c323a9c 100644 --- a/openwrt/Makefile +++ b/openwrt/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: |