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