diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 01:25:28 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-28 01:25:28 +0000 |
commit | 4bc9b0ff4a1e2d6d4386c97fca82e4561bc1b833 (patch) | |
tree | 102f57ac3612557016adc6402173b11a6f59e60f /llvm/projects/Stacker/lib/compiler | |
parent | c9bbb35c6f5a4add10125e85f2b81e9c7a2477cb (diff) | |
download | bcm5719-llvm-4bc9b0ff4a1e2d6d4386c97fca82e4561bc1b833.tar.gz bcm5719-llvm-4bc9b0ff4a1e2d6d4386c97fca82e4561bc1b833.zip |
Get rid of drivel.
Ensure the lex/yacc output are specified as BUILT_SOURCES so they get
built first.
llvm-svn: 17290
Diffstat (limited to 'llvm/projects/Stacker/lib/compiler')
-rw-r--r-- | llvm/projects/Stacker/lib/compiler/Makefile | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/llvm/projects/Stacker/lib/compiler/Makefile b/llvm/projects/Stacker/lib/compiler/Makefile index 1b767058a0e..f0fec438b6c 100644 --- a/llvm/projects/Stacker/lib/compiler/Makefile +++ b/llvm/projects/Stacker/lib/compiler/Makefile @@ -1,18 +1,9 @@ ##===- projects/Stacker/lib/compiler/Makefile --------------*- Makefile -*-===## -# -# Indicate where we are relative to the top of the source tree. -# -LEVEL=../.. +LEVEL := ../.. +LIBRARYNAME := stkr_compiler +BUILT_SOURCES := StackerParser.cpp StackerParser.h Lexer.cpp -# -# Give the name of a library. This will build a dynamic version. -# -LIBRARYNAME=stkr_compiler - -# -# Include Makefile.common so we know what to do. -# include $(LEVEL)/Makefile.common ifdef PARSE_DEBUG |