1 # name of executable to build
2 EXECUTABLE=libcsputils.a
3 # C++ source (with .cpp extension)
4 CPSOURCE= commonCpp.cpp nssAppUtils.cpp ssleayUtils.cpp
5 # C source (.c extension)
6 CSOURCE= common.c cspwrap.c fileIo.c bsafeUtils.c t_stdlib.c rijndael-alg-ref.c \
7 rijndaelApi.c cputime.c
10 # project-specific libraries, e.g., -lstdc++
14 # Optional lib search paths
24 # Other files to remove at 'make clean' time
29 # non-standard frameworks (e.g., -framework foo)
34 # project-specific includes, with leading -I
39 # Optional C flags (warnings, optimizations, etc.)
42 PROJ_CFLAGS= -fvisibility=hidden
45 # Optional link flags (using cc, not ld)
50 # Optional dependencies
54 include ../Makefile.lib
56 # Special case for this object file...normally we ignore header dependencies, but
57 # this header is auto generated on a regular basis.
58 $(OBJROOT)/commonCpp.o: commonCpp.cpp cssmErrorStrings.h
59 $(CC) $(ALL_CFLAGS) -c -o $(OBJROOT)/commonCpp.o commonCpp.cpp