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