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