X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/80e2389990082500d76eb566d4946be3e786c3ef..d8f41ccd20de16f8ebe2ccc84d47bf1cb2b26bbb:/Security/libsecurity_cryptkit/ckutils/atomTime/Makefile diff --git a/Security/libsecurity_cryptkit/ckutils/atomTime/Makefile b/Security/libsecurity_cryptkit/ckutils/atomTime/Makefile new file mode 100644 index 00000000..cef23232 --- /dev/null +++ b/Security/libsecurity_cryptkit/ckutils/atomTime/Makefile @@ -0,0 +1,53 @@ +# name of executable to build +EXECUTABLE=atomTime +# C source (.c extension) +CSOURCE= atomTime.c + +SHELL := /bin/zsh + +# project-specific libraries, e.g., -lstdc++ +# +PROJ_LIBS= + +# +# Optional lib search paths +# +PROJ_LIBPATH= + +# +# choose one for cc +# +VERBOSE= +#VERBOSE=-v + +# +# non-standard frameworks (e.g., -framework foo) +# +PROJ_FRAMEWORKS= -framework CoreFoundation + +# +# Other files to remove at 'make clean' time +# +OTHER_TO_CLEAN= + +# +# project-specific includes, with leading -I +# +PROJ_INCLUDES= + +# +# Optional C flags (warnings, optimizations, etc.) +# +PROJ_CFLAGS=-O3 + +# +# Optional link flags (using cc, not ld) +# +PROJ_LDFLAGS= + +# +# Optional dependencies +# +PROJ_DEPENDS= + +include ../Makefile.common