diff options
author | Todd Lyons <tlyons@exim.org> | 2013-09-30 10:52:50 -0700 |
---|---|---|
committer | Todd Lyons <tlyons@exim.org> | 2013-09-30 10:54:56 -0700 |
commit | 0b7343d7d0c6698624ebe44e357b25e8f8d6314e (patch) | |
tree | dfd7c7d4995a9e443c43215d7c720d8482d89478 | |
parent | 970ba64f07bf5523c7098235664f2ce02962a128 (diff) |
Adjust test build link paths.
Details at: http://comments.gmane.org/gmane.mail.exim.user/91154
Add ignore for a logfile from test run.
-rw-r--r-- | test/.gitignore | 1 | ||||
-rw-r--r-- | test/Makefile.in | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/test/.gitignore b/test/.gitignore index c24bb8993..57088717e 100644 --- a/test/.gitignore +++ b/test/.gitignore @@ -9,3 +9,4 @@ eximdir/ Makefile spool/ test-* +failed-summary.log diff --git a/test/Makefile.in b/test/Makefile.in index 3c12f3625..fda4d5f64 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -49,12 +49,12 @@ bin/client: src/client.c Makefile @echo " " bin/client-gnutls: src/client.c Makefile - $(CC) $(CFLAGS) -DHAVE_GNUTLS $(LDFLAGS) -lgnutls -lgcrypt -o bin/client-gnutls src/client.c + $(CC) $(CFLAGS) -DHAVE_GNUTLS $(LDFLAGS) -o bin/client-gnutls src/client.c -lgnutls -lgcrypt @echo ">>> bin/client-gnutls command built" @echo " " bin/client-ssl: src/client.c Makefile - $(CC) $(CFLAGS) -DHAVE_OPENSSL $(LDFLAGS) -lssl -lcrypto -o bin/client-ssl src/client.c + $(CC) $(CFLAGS) -DHAVE_OPENSSL $(LDFLAGS) -o bin/client-ssl src/client.c -lssl -lcrypto @echo ">>> bin/client-ssl command built" @echo " " |