Skip to content

Commit c623c70

Browse files
committed
Fix warnings about usage of linker flags in compile commands
1 parent c4d2a25 commit c623c70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extern/libtomcrypt/makefile.shared

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ include makefile_include.mk
4343

4444
#ciphers come in two flavours... enc+dec and enc
4545
src/ciphers/aes/aes_enc.o: src/ciphers/aes/aes.c src/ciphers/aes/aes_tab.c
46-
$(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o
46+
$(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) -DENCRYPT_ONLY -c src/ciphers/aes/aes.c -o src/ciphers/aes/aes_enc.o
4747

4848
.c.o:
49-
$(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) $(LTC_LDFLAGS) -o $@ -c $<
49+
$(LTCOMPILE) $(LTC_CFLAGS) $(CPPFLAGS) -o $@ -c $<
5050

5151
LOBJECTS = $(OBJECTS:.o=.lo)
5252

0 commit comments

Comments
 (0)