summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-11-07 14:50:58 +0000
committerChris Lattner <sabre@nondot.org>2001-11-07 14:50:58 +0000
commitaa6ec735cf519c0cd023a5a920081bf161a328cd (patch)
tree590af4482395ceefb45fdaa0c68a05ecc5f8c3b7 /Makefile.rules
parent8e5c0b473af29927463ead651df5b9639c410b69 (diff)
downloadllvm-aa6ec735cf519c0cd023a5a920081bf161a328cd.tar.gz
llvm-aa6ec735cf519c0cd023a5a920081bf161a328cd.tar.bz2
llvm-aa6ec735cf519c0cd023a5a920081bf161a328cd.tar.xz
1. -Winline emits spurious warnings that aren't useful right now
2. Fix the "rebuild everything if I change one file" problem git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1176 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 921695c67d..95f3aa9f09 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -52,7 +52,7 @@ RunBurg = $(BURG) $(BURG_OPTS)
#Prof = -pg
# TODO: Get rid of exceptions! : -fno-exceptions -fno-rtti
-CompileCommonOpts = $(Prof) -Wall -Winline -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
+CompileCommonOpts = $(Prof) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
# Compile a file, don't link...
Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
@@ -194,6 +194,7 @@ endif
#---------------------------------------------------------
+.PRECIOUS: Depend/.dir Debug/.dir Release/.dir
# Create dependencies for the *.cpp files...
Depend/%.d: %.cpp Depend/.dir