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