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