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