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