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