summaryrefslogtreecommitdiffstats
path: root/demos/evp
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2017-07-07 11:44:52 +1000
committerPauli <paul.dale@oracle.com>2017-07-07 11:44:52 +1000
commitab3e8f63154c7daea9e67846aa83b6e1de7f8969 (patch)
tree79c8af8d33c1577276a2e55ac7c117d3412d8f69 /demos/evp
parent1ef454181394b474ed590c551f659b4ce11aa093 (diff)
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)
Diffstat (limited to 'demos/evp')
-rw-r--r--demos/evp/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/evp/Makefile b/demos/evp/Makefile
index 72c6e81d7a..3a85b223a8 100644
--- a/demos/evp/Makefile
+++ b/demos/evp/Makefile
@@ -17,4 +17,4 @@ aesccm: aesccm.o
aesgcm: aesgcm.o
aesccm aesgcm:
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
+ $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)