diff options
author | Matt Johnston <matt@ucc.asn.au> | 2006-10-11 16:00:50 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2006-10-11 16:00:50 +0000 |
commit | 35bcc463e5ffe2f630c71962ca12d69a84952568 (patch) | |
tree | de841f81c0b7d1a2b13aef76d43ac4cf7303617b /libtomcrypt | |
parent | 33a182674a8c8735c17e627984bf49562aeb1370 (diff) |
Fix up separate-directory building for libtomcrypt
Use $CC rather than $LD for linking
--HG--
extra : convert_revision : 31dcd7a22983ef19d6c63248e415e71d292dd0ec
Diffstat (limited to 'libtomcrypt')
-rw-r--r-- | libtomcrypt/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtomcrypt/Makefile.in b/libtomcrypt/Makefile.in index e1bee57..f1cfdad 100644 --- a/libtomcrypt/Makefile.in +++ b/libtomcrypt/Makefile.in @@ -158,7 +158,7 @@ default:library #ciphers come in two flavours... enc+dec and enc src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c - $(CC) $(CFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o + $(CC) $(CFLAGS) -DENCRYPT_ONLY -c $< -o src/ciphers/aes/aes_enc.o #These are the rules to make certain object files. src/ciphers/aes/aes.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c |