diff options
author | Max Horn | 2009-10-28 13:43:57 +0000 |
---|---|---|
committer | Max Horn | 2009-10-28 13:43:57 +0000 |
commit | effb6b60eb179c6b7b78ba30e20fd819a3b5bba9 (patch) | |
tree | 5b6387bd0836cbb18963f4157f8f84b16a906eb3 /tools | |
parent | 0b83a8eec03fac3fe3a7ea656be6ea8752477554 (diff) | |
download | scummvm-rg350-effb6b60eb179c6b7b78ba30e20fd819a3b5bba9.tar.gz scummvm-rg350-effb6b60eb179c6b7b78ba30e20fd819a3b5bba9.tar.bz2 scummvm-rg350-effb6b60eb179c6b7b78ba30e20fd819a3b5bba9.zip |
BUILD: Reduce build overhead by marking *.d and *.mk files as .PHONY, thus preventing Make from futile searches for rule to rebuild those files
svn-id: r45462
Diffstat (limited to 'tools')
-rw-r--r-- | tools/module.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/module.mk b/tools/module.mk index 4c1ea57da6..bf246ad0d6 100644 --- a/tools/module.mk +++ b/tools/module.mk @@ -18,6 +18,8 @@ TOOLS := \ include $(srcdir)/tools/*/module.mk +.PHONY: $(srcdir)/tools/*/module.mk + # Make sure the 'all' / 'clean' targets build/clean the tools, too #all: clean: clean-tools |