Misha Brukman | 0603079 | 2004-06-17 15:49:36 +0000 | [diff] [blame] | 1 | ##===- utils/TableGen/Makefile -----------------------------*- Makefile -*-===## |
John Criswell | e2fab73 | 2003-10-20 22:29:16 +0000 | [diff] [blame] | 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 | ##===----------------------------------------------------------------------===## |
Chris Lattner | 0a92ebf | 2003-10-05 19:27:59 +0000 | [diff] [blame] | 9 | LEVEL = ../.. |
Chris Lattner | e62c118 | 2002-12-02 01:23:04 +0000 | [diff] [blame] | 10 | TOOLNAME = tblgen |
Reid Spencer | 6cb21d4 | 2004-10-27 23:18:45 +0000 | [diff] [blame] | 11 | USEDLIBS = LLVMSupport.a LLVMSystem.a |
Chris Lattner | e62c118 | 2002-12-02 01:23:04 +0000 | [diff] [blame] | 12 | |
| 13 | include $(LEVEL)/Makefile.common |
| 14 | |
John Criswell | 7a73b80 | 2003-06-30 21:59:07 +0000 | [diff] [blame] | 15 | # |
| 16 | # Make the source file depend on the header file. In this way, dependencies |
| 17 | # (which depend on the source file) won't get generated until bison is done |
| 18 | # generating the C source and header files for the parser. |
| 19 | # |
Reid Spencer | 68a24bd | 2005-08-27 18:50:39 +0000 | [diff] [blame^] | 20 | $(ObjDir)/FileLexer.o : $(PROJ_SRC_DIR)/FileParser.h |