diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-03-16 23:06:59 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-03-16 23:06:59 +0000 |
commit | 23d75bb3262dff87945bfb90065ef653d62e3947 (patch) | |
tree | 9d1485b24f739024c6113eedeaf5667149bea3bd /clang/lib/Parse/Makefile | |
parent | d24535fe3c6507071ca6111f590969f5d721efec (diff) | |
download | bcm5719-llvm-23d75bb3262dff87945bfb90065ef653d62e3947.tar.gz bcm5719-llvm-23d75bb3262dff87945bfb90065ef653d62e3947.zip |
Build system changes to use TableGen to generate the various
diagnostics. This builds on the patch that Sebastian committed and
then revert. Major differences are:
- We don't remove or use the current ".def" files. Instead, for now,
we just make sure that we're building the ".inc" files.
- Fixed CMake makefiles to run TableGen and build the ".inc" files
when needed. Tested with both the Xcode and Makefile generators
provided by CMake, so it should be solid.
- Fixed normal makefiles to handle out-of-source builds that involve
the ".inc" files.
I'll send a separate patch to the list with Sebastian's changes that
eliminate the use of the .def files.
llvm-svn: 67058
Diffstat (limited to 'clang/lib/Parse/Makefile')
-rw-r--r-- | clang/lib/Parse/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/Makefile b/clang/lib/Parse/Makefile index b5d2653bb09..5d69029edc1 100644 --- a/clang/lib/Parse/Makefile +++ b/clang/lib/Parse/Makefile @@ -16,7 +16,7 @@ LIBRARYNAME := clangParse BUILD_ARCHIVE = 1 CXXFLAGS = -fno-rtti -CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include +CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include include $(LEVEL)/Makefile.common |