]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Work under mingw.
authorSimon Josefsson <simon@josefsson.org>
Tue, 27 Jun 2006 12:01:40 +0000 (12:01 +0000)
committerSimon Josefsson <simon@josefsson.org>
Tue, 27 Jun 2006 12:01:40 +0000 (12:01 +0000)
libextra/minilzo/Makefile.am
tests/Makefile.am

index edde7fceae5a6917c771c5ee1f92374d881b63f5..f492464468f7c9f1e20fa11adeab211c684dc954 100644 (file)
@@ -1,5 +1,5 @@
 ## Process this file with automake to produce Makefile.in
-# Copyright (C) 2005 Free Software Foundation
+# Copyright (C) 2005, 2006 Free Software Foundation
 #
 # Author: Simon Josefsson
 #
@@ -28,5 +28,6 @@ libminilzo_la_SOURCES = lzoconf.h lzodefs.h minilzo.c minilzo.h
 
 EXTRA_DIST = README.LZO
 
-TESTS = testmini
-check_PROGRAMS = testmini
+ctests = testmini$(EXEEXT)
+TESTS = $(ctests)
+check_PROGRAMS = $(ctests)
index f504eacc3071102dd4cd4b968fe4d37c652fb404..55912294d0fa91e070f49e2b683c037c59535115 100644 (file)
@@ -36,9 +36,11 @@ openssl_LDADD = $(LDADD) ../libextra/libgnutls-openssl.la
 tlsia_LDADD = $(LDADD) ../libextra/libgnutls-extra.la \
        ../gl/libgnu.la @LTLIBREADLINE@
 
-ctests = simple openssl gc set_pkcs12_cred certder
+ctests = simple$(EXEEXT) openssl$(EXEEXT) gc$(EXEEXT)  \
+       set_pkcs12_cred$(EXEEXT) certder$(EXEEXT)
 if HAVE_FORK
-ctests +=  anonself pskself dhepskself tlsia resume
+ctests +=  anonself$(EXEEXT) pskself$(EXEEXT) dhepskself$(EXEEXT) \
+       tlsia resume$(EXEEXT)
 endif
 TESTS = pkcs12_neon pkcs8 $(ctests)
 check_PROGRAMS = $(ctests)