diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-14 17:23:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-14 17:23:55 +0000 |
commit | db0087749655ceb6b58fead0956c1badbdf4b009 (patch) | |
tree | d8f9a22b805c6b80d17bff2cd5595b3733d5bebb /Makefile.common | |
parent | 1166b00316761df873db882c7212133f9b074d41 (diff) | |
download | external_llvm-db0087749655ceb6b58fead0956c1badbdf4b009.zip external_llvm-db0087749655ceb6b58fead0956c1badbdf4b009.tar.gz external_llvm-db0087749655ceb6b58fead0956c1badbdf4b009.tar.bz2 |
Burg files should come out of the Debug Directory for temporary files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@790 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 470fd81..0d4cfb6 100644 --- a/Makefile.common +++ b/Makefile.common @@ -210,7 +210,7 @@ Debug/%.o: %.c Debug/.dir Depend/.dir $(CompileG) $< -o $@ # Create a .cpp source file from a burg input file -%.burm.cpp: %.burg +%.burm.cpp: Debug/%.burg $(RunBurg) $< -o $@ # Create a .cpp source file from a flex input file... this uses sed to cut down |