Rearrange link line so the libraries come after the source.

Some linkers like it this way.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3879)
This commit is contained in:
Pauli 2017-07-07 11:44:52 +10:00
parent 1ef4541813
commit ab3e8f6315
2 changed files with 2 additions and 2 deletions

View file

@ -27,4 +27,4 @@ server-cmod: server-cmod.o
server-conf: server-conf.o
client-arg client-conf saccept sconnect server-arg server-cmod server-conf:
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)

View file

@ -17,4 +17,4 @@ aesccm: aesccm.o
aesgcm: aesgcm.o
aesccm aesgcm:
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)