]> git.saurik.com Git - apple/security.git/blob - SecurityTests/cspxutils/keyDate/Makefile
Security-57031.10.10.tar.gz
[apple/security.git] / SecurityTests / cspxutils / keyDate / Makefile
1 #
2 # sample Makefile fragment for csputils projects.
3 #
4
5 ### fill in these:
6
7 # name of executable to build
8 EXECUTABLE=keyDate
9 # C++ source (with .cpp extension)
10 CPSOURCE=keyDate.cpp
11 # C source (.c extension)
12 CSOURCE=
13
14 ### all of the rest is optional.
15
16 #
17 # Note final load with cc, not ld
18 #
19 # project-specific libraries, e.g., -lstdc++
20 #
21 PROJ_LIBS=
22 #
23 # Optional lib search paths
24 #
25 PROJ_LIBPATH=
26 #
27 # choose one for cc
28 #
29 VERBOSE=
30 #VERBOSE=-v
31
32 #
33 # non-standard frameworks (e.g., -framework foo)
34 #
35 PROJ_FRAMEWORKS= -framework CoreFoundation
36
37 #
38 # project-specific includes, with leading -I
39 #
40 PROJ_INCLUDES=
41
42 #
43 # Optional C flags (warnings, optimizations, etc.)
44 #
45 PROJ_CFLAGS=
46
47 #
48 # Optional link flags (using cc, not ld)
49 #
50 PROJ_LDFLAGS=
51
52 #
53 # Optional dependencies
54 #
55 PROJ_DEPENDS=
56
57 include ../Makefile.cdsa