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