]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/unBER/Makefile
Security-57336.1.9.tar.gz
[apple/security.git] / SecurityTests / clxutils / unBER / Makefile
1 # name of executable to build
2 EXECUTABLE=unBER
3 # C++ source (with .cpp extension)
4 CPSOURCE= unBER.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 ifeq "-DSPHINX" "$(SPHINX)"
14 PROJ_LIBS=
15 else
16 PROJ_LIBS=
17 endif
18 #
19 # Optional lib search paths
20 #
21 PROJ_LIBPATH=
22 #
23 # choose one for cc
24 #
25 VERBOSE=
26 #VERBOSE=-v
27
28 #
29 # Other files to remove at 'make clean' time
30 #
31 OTHER_TO_CLEAN=
32
33 #
34 # non-standard frameworks (e.g., -framework foo)
35 #
36 PROJ_FRAMEWORKS=
37
38 #
39 # project-specific includes, with leading -I
40 #
41 PROJ_INCLUDES=
42
43 #
44 # Optional C flags (warnings, optimizations, etc.)
45 #
46 PROJ_CFLAGS=
47
48 #
49 # Optional link flags (using cc, not ld)
50 #
51 PROJ_LDFLAGS=
52
53 #
54 # Optional dependencies
55 #
56 PROJ_DEPENDS=
57
58 include ../Makefile.cdsa