diff options
author | Chris Lattner <sabre@nondot.org> | 2006-08-25 17:15:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-08-25 17:15:23 +0000 |
commit | 463b79f5d1c86df8eb80ef9da76c461bbf29059e (patch) | |
tree | 2a470c35039d7104dade22fb2525ca0df0aefbac /projects | |
parent | f757966480ec7730d634979f609361dfaa722acd (diff) |
Fix a race condition in the makefile that broke grawp's tester last night.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29873 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r-- | projects/Stacker/lib/compiler/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/Stacker/lib/compiler/Makefile b/projects/Stacker/lib/compiler/Makefile index 1f2db178d4..11276c1517 100644 --- a/projects/Stacker/lib/compiler/Makefile +++ b/projects/Stacker/lib/compiler/Makefile @@ -18,3 +18,4 @@ CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) $(ObjDir)/Lexer.o : $(PROJ_SRC_DIR)/StackerParser.h +$(ObjDir)/StackerCompiler.o : $(PROJ_SRC_DIR)/StackerParser.h |