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:
parent
1ef4541813
commit
ab3e8f6315
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
|
@ -17,4 +17,4 @@ aesccm: aesccm.o
|
|||
aesgcm: aesgcm.o
|
||||
|
||||
aesccm aesgcm:
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
||||
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
|
||||
|
|
Loading…
Reference in a new issue