]>
Commit | Line | Data |
---|---|---|
b1ab9ed8 | 1 | # name of executable to build |
d8f41ccd A |
2 | EXECUTABLE=hashCompat |
3 | # C++ source (with .cpp extension) | |
4 | CPSOURCE= | |
b1ab9ed8 | 5 | # C source (.c extension) |
d8f41ccd | 6 | CSOURCE= hashCompat.c |
b1ab9ed8 | 7 | |
d8f41ccd A |
8 | # |
9 | # Note final load with cc, not ld | |
10 | # | |
b1ab9ed8 A |
11 | # project-specific libraries, e.g., -lstdc++ |
12 | # | |
13 | PROJ_LIBS= | |
b1ab9ed8 A |
14 | # |
15 | # Optional lib search paths | |
16 | # | |
d8f41ccd A |
17 | # for bsafe.... |
18 | PROJ_LIBPATH= -L$(LOCAL_BUILD) | |
b1ab9ed8 A |
19 | # |
20 | # choose one for cc | |
21 | # | |
22 | VERBOSE= | |
23 | #VERBOSE=-v | |
24 | ||
25 | # | |
d8f41ccd | 26 | # Other files to remove at 'make clean' time |
b1ab9ed8 | 27 | # |
d8f41ccd | 28 | OTHER_TO_CLEAN= |
b1ab9ed8 A |
29 | |
30 | # | |
d8f41ccd | 31 | # non-standard frameworks (e.g., -framework foo) |
b1ab9ed8 | 32 | # |
d8f41ccd | 33 | PROJ_FRAMEWORKS= |
b1ab9ed8 A |
34 | |
35 | # | |
36 | # project-specific includes, with leading -I | |
37 | # | |
38 | PROJ_INCLUDES= | |
39 | ||
40 | # | |
41 | # Optional C flags (warnings, optimizations, etc.) | |
42 | # | |
d8f41ccd | 43 | PROJ_CFLAGS= -F/System/Library/PrivateFrameworks |
b1ab9ed8 A |
44 | |
45 | # | |
46 | # Optional link flags (using cc, not ld) | |
47 | # | |
48 | PROJ_LDFLAGS= | |
d8f41ccd | 49 | #PROJ_LDFLAGS= |
b1ab9ed8 A |
50 | |
51 | # | |
52 | # Optional dependencies | |
53 | # | |
54 | PROJ_DEPENDS= | |
55 | ||
d8f41ccd | 56 | include ../Makefile.cdsa |