summaryrefslogtreecommitdiff
path: root/utils/tomcrypt/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/tomcrypt/Makefile')
-rw-r--r--utils/tomcrypt/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/utils/tomcrypt/Makefile b/utils/tomcrypt/Makefile
index 3382819a66..f0d874c1ae 100644
--- a/utils/tomcrypt/Makefile
+++ b/utils/tomcrypt/Makefile
@@ -25,13 +25,18 @@ endif
25CFLAGS := -O3 -g -std=c99 -Wall $(DEFINES) -Isrc/headers 25CFLAGS := -O3 -g -std=c99 -Wall $(DEFINES) -Isrc/headers
26LDFLAGS := 26LDFLAGS :=
27 27
28CPPDEFINES := $(shell echo foo | $(CROSS)$(CC) -dM -E -)
29ifeq ($(findstring __clang__,$(CPPDEFINES)),__clang__)
30CFLAGS += -mmacosx-version-min=10.5
28ifneq ($(ISYSROOT),) 31ifneq ($(ISYSROOT),)
29CFLAGS += -isysroot $(ISYSROOT) 32CFLAGS += -isysroot $(ISYSROOT)
30endif 33endif
34endif
31 35
32SOURCES := \ 36SOURCES := \
33 src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c \ 37 src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c \
34 src/misc/crypt/crypt_argchk.c src/misc/crypt/crypt_register_cipher.c src/misc/crypt/crypt_cipher_is_valid.c src/misc/crypt/crypt_cipher_descriptor.c \ 38 src/misc/crypt/crypt_argchk.c src/misc/crypt/crypt_register_cipher.c \
39 src/misc/crypt/crypt_cipher_is_valid.c src/misc/crypt/crypt_cipher_descriptor.c \
35 src/misc/zeromem.c src/misc/compare_testvector.c \ 40 src/misc/zeromem.c src/misc/compare_testvector.c \
36 src/modes/cbc/cbc_start.c src/modes/cbc/cbc_decrypt.c src/modes/cbc/cbc_encrypt.c \ 41 src/modes/cbc/cbc_start.c src/modes/cbc/cbc_decrypt.c src/modes/cbc/cbc_encrypt.c \
37 src/hashes/sha1.c 42 src/hashes/sha1.c