Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame^] | 1 | ##===- utils/TableGen/Makefile -----------------------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file was developed by the LLVM research group and is distributed under |
| 6 | # the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | |
| 10 | LEVEL = ../.. |
| 11 | TOOLNAME = tblgen |
| 12 | NO_INSTALL = 1; |
| 13 | USEDLIBS = LLVMSupport.a LLVMSystem.a |
| 14 | EXTRA_DIST = FileLexer.cpp.cvs FileLexer.l.cvs \ |
| 15 | FileParser.cpp.cvs FileParser.h.cvs FileParser.y.cvs |
| 16 | REQUIRES_EH := 1 |
| 17 | |
| 18 | include $(LEVEL)/Makefile.common |
| 19 | |
| 20 | # Disable -pedantic for tblgen |
| 21 | CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) |
| 22 | CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts)) |
| 23 | |
| 24 | # |
| 25 | # Make the source file depend on the header file. In this way, dependencies |
| 26 | # (which depend on the source file) won't get generated until bison is done |
| 27 | # generating the C source and header files for the parser. |
| 28 | # |
| 29 | $(ObjDir)/FileLexer.o : $(PROJ_SRC_DIR)/FileParser.h |