mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
11b2dbd5f8
They are already marked precious in llvm/Makefile.rules, and removing this line seems to fix the Makefile so that the Yacc output is placed into the object tree and not the source tree. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9179 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
433 B
Makefile
17 lines
433 B
Makefile
LEVEL = ../..
|
|
TOOLNAME = tblgen
|
|
USEDLIBS = support.a
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
#
|
|
# Make the source file depend on the header file. In this way, dependencies
|
|
# (which depend on the source file) won't get generated until bison is done
|
|
# generating the C source and header files for the parser.
|
|
#
|
|
FileLexer.cpp: FileParser.h
|
|
|
|
clean::
|
|
-rm -f FileParser.cpp FileParser.h FileLexer.cpp CommandLine.cpp
|
|
-rm -f FileParser.output
|