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