Chris Lattner | f608e85 | 2003-11-23 17:52:55 +0000 | [diff] [blame] | 1 | ##===- projects/sample/lib/sample/Makefile -----------------*- Makefile -*-===## |
2 | |||||
3 | # | ||||
4 | # Indicate where we are relative to the top of the source tree. | ||||
5 | # | ||||
6 | LEVEL=../../../.. | ||||
7 | |||||
8 | # | ||||
9 | # Give the name of a library. This will build a dynamic version. | ||||
10 | # | ||||
11 | SHARED_LIBRARY=1 | ||||
12 | LIBRARYNAME=stkr_compiler | ||||
13 | |||||
14 | # | ||||
15 | # Include Makefile.common so we know what to do. | ||||
16 | # | ||||
17 | include $(LEVEL)/Makefile.common | ||||
18 | |||||
19 | ifdef PARSE_DEBUG | ||||
20 | INCLUDES += -DPARSE_DEBUG | ||||
21 | endif |