]> git.saurik.com Git - apple/security.git/blob - SecurityTests/cspxutils/ccHmacClone/Makefile
Security-57740.31.2.tar.gz
[apple/security.git] / SecurityTests / cspxutils / ccHmacClone / Makefile
1 # name of executable to build
2 EXECUTABLE=ccHmacClone
3 # C++ source (with .cpp extension)
4 CPSOURCE= ccHmacClone.cpp
5 # C source (.c extension)
6 CSOURCE=
7
8 #
9 # Note final load with cc, not ld
10 #
11 # project-specific libraries, e.g., -lstdc++
12 #
13 #PROJ_LIBS= -lcommonCrypto -lcrypto
14 PROJ_LIBS=
15 #
16 # Optional lib search paths
17 #
18 PROJ_LIBPATH=
19 #
20 # choose one for cc
21 #
22 VERBOSE=
23 #VERBOSE=-v
24
25 #
26 # non-standard frameworks (e.g., -framework foo)
27 #
28 PROJ_FRAMEWORKS=
29
30 #
31 # project-specific includes, with leading -I
32 #
33 PROJ_INCLUDES= -I$(LOCAL_BUILD)/include
34
35 #
36 # Optional C flags (warnings, optimizations, etc.)
37 #
38 PROJ_CFLAGS= -F/System/Library/PrivateFrameworks
39
40 #
41 # Optional link flags (using cc, not ld)
42 #
43 #PROJ_LDFLAGS= -lMallocDebug -lBSafe
44 #
45 # this is for linking against a custom libSystem...this is where it goes.
46 # You also need to do a setenv DYLD_LIBRARY_PATH /tmp/System/Debug to run.
47 #PROJ_LDFLAGS= -L/tmp/System/Debug
48 PROJ_LDFLAGS=
49
50 #
51 # Other files to remove at 'make clean' time
52 #
53 OTHER_TO_CLEAN=
54
55 #
56 # Optional dependencies
57 #
58 PROJ_DEPENDS=
59
60 include ../Makefile.cdsa