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