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