]> git.saurik.com Git - apple/security.git/blame - SecurityTests/cspxutils/ccHmacCompat/Makefile
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / cspxutils / ccHmacCompat / Makefile
CommitLineData
b1ab9ed8 1# name of executable to build
d8f41ccd
A
2EXECUTABLE=ccHmacCompat
3# C++ source (with .cpp extension)
4CPSOURCE=
b1ab9ed8 5# C source (.c extension)
d8f41ccd 6CSOURCE= ccHmacCompat.c
b1ab9ed8 7
d8f41ccd
A
8#
9# Note final load with cc, not ld
10#
b1ab9ed8
A
11# project-specific libraries, e.g., -lstdc++
12#
d8f41ccd
A
13#PROJ_LIBS= -lcommonCrypto -lcrypto
14PROJ_LIBS= -lcrypto
b1ab9ed8
A
15#
16# Optional lib search paths
17#
18PROJ_LIBPATH=
b1ab9ed8
A
19#
20# choose one for cc
21#
22VERBOSE=
23#VERBOSE=-v
24
25#
26# non-standard frameworks (e.g., -framework foo)
27#
28PROJ_FRAMEWORKS=
29
b1ab9ed8
A
30#
31# project-specific includes, with leading -I
32#
d8f41ccd 33PROJ_INCLUDES= -I$(LOCAL_BUILD)/include
b1ab9ed8
A
34
35#
36# Optional C flags (warnings, optimizations, etc.)
37#
d8f41ccd 38PROJ_CFLAGS= -F/System/Library/PrivateFrameworks
b1ab9ed8
A
39
40#
41# Optional link flags (using cc, not ld)
42#
d8f41ccd
A
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.
47PROJ_LDFLAGS= -L$(LOCAL_BUILD)
48
49#
50# Other files to remove at 'make clean' time
51#
52OTHER_TO_CLEAN=
b1ab9ed8
A
53
54#
55# Optional dependencies
56#
57PROJ_DEPENDS=
58
d8f41ccd 59include ../Makefile.cdsa