summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makefile
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2010-01-01 13:54:36 -0800
committerSteven Noonan <steven@uplinklabs.net>2010-01-01 13:54:36 -0800
commitcf0d62b28f303b13cc5d8220da68c5a56876b93c (patch)
tree73d61b76e8a36a3e97e8cf30cbd13916a5a4eb38 /crawl-ref/source/makefile
parent9e2aae8e87ed53f3c845ff943e35e7f5b61cafac (diff)
downloadcrawl-ref-cf0d62b28f303b13cc5d8220da68c5a56876b93c.tar.gz
crawl-ref-cf0d62b28f303b13cc5d8220da68c5a56876b93c.zip
makefile: don't generate dependencies for AppHdr.h.gch
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/makefile')
-rw-r--r--crawl-ref/source/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile
index 188359e245..e12f6f5a59 100644
--- a/crawl-ref/source/makefile
+++ b/crawl-ref/source/makefile
@@ -869,7 +869,7 @@ $(UTIL)%.o: $(UTIL)%.cc .cflags
ifdef PCH
%.h.gch: %.h
- $(QUIET_PCH)$(CXX) $(ALL_CFLAGS) -Wp,-MD,$(subst .o,.d,$@) -c $< -o $@
+ $(QUIET_PCH)$(CXX) $(ALL_CFLAGS) -c $< -o $@
CC_DEP := AppHdr.h.gch
endif