summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--openbsd-compat/regress/Makefile.in15
2 files changed, 13 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f956a579..e24ad3444 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
3 - djm@cvs.openbsd.org 2006/08/18 22:41:29 3 - djm@cvs.openbsd.org 2006/08/18 22:41:29
4 [gss-genr.c] 4 [gss-genr.c]
5 GSSAPI error code should be 0 and not -1; from simon@sxw.org.uk 5 GSSAPI error code should be 0 and not -1; from simon@sxw.org.uk
6 - (dtucker) [openbsd-compat/regress/Makefile.in] Add $(EXEEXT) and add a
7 single rule for the test progs.
6 8
720060818 920060818
8 - (dtucker) [configure.ac openbsd-compat/bsd-closefrom.c] Resync with 10 - (dtucker) [configure.ac openbsd-compat/bsd-closefrom.c] Resync with
@@ -5272,4 +5274,4 @@
5272 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5274 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5273 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5275 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5274 5276
5275$Id: ChangeLog,v 1.4497 2006/08/18 22:50:57 djm Exp $ 5277$Id: ChangeLog,v 1.4498 2006/08/19 09:12:14 dtucker Exp $
diff --git a/openbsd-compat/regress/Makefile.in b/openbsd-compat/regress/Makefile.in
index 22dab2837..bcf214bd0 100644
--- a/openbsd-compat/regress/Makefile.in
+++ b/openbsd-compat/regress/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.3 2006/08/18 10:56:19 dtucker Exp $ 1# $Id: Makefile.in,v 1.4 2006/08/19 09:12:14 dtucker Exp $
2 2
3sysconfdir=@sysconfdir@ 3sysconfdir=@sysconfdir@
4piddir=@piddir@ 4piddir=@piddir@
@@ -10,19 +10,24 @@ CC=@CC@
10LD=@LD@ 10LD=@LD@
11CFLAGS=@CFLAGS@ 11CFLAGS=@CFLAGS@
12CPPFLAGS=-I. -I.. -I$(srcdir) -I$(srcdir)/.. @CPPFLAGS@ @DEFS@ 12CPPFLAGS=-I. -I.. -I$(srcdir) -I$(srcdir)/.. @CPPFLAGS@ @DEFS@
13EXEEXT=@EXEEXT@
14LIBCOMPAT=../libopenbsd-compat.a
13LIBS=@LIBS@ 15LIBS=@LIBS@
14LDFLAGS=-L.. -lopenbsd-compat @LDFLAGS@ 16LDFLAGS=@LDFLAGS@ $(LIBCOMPAT)
15 17
16LIBCOMPAT=../libopenbsd-compat.a 18TESTPROGS=closefromtest$(EXEEXT) snprintftest$(EXEEXT) strduptest$(EXEEXT) \
17TESTPROGS=closefromtest strtonumtest strduptest snprintftest 19 strtonumtest$(EXEEXT)
18 20
19all: t-exec ${OTHERTESTS} 21all: t-exec ${OTHERTESTS}
20 22
23%$(EXEEXT): %.c
24 $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $< $(LIBCOMPAT) $(LIBS)
25
21t-exec: $(TESTPROGS) 26t-exec: $(TESTPROGS)
22 @echo running compat regress tests 27 @echo running compat regress tests
23 @for TEST in ""$?; do \ 28 @for TEST in ""$?; do \
24 echo "run test $${TEST}" ... 1>&2; \ 29 echo "run test $${TEST}" ... 1>&2; \
25 ./$${TEST} || exit $$? ; \ 30 ./$${TEST}$(EXEEXT) || exit $$? ; \
26 done 31 done
27 @echo finished compat regress tests 32 @echo finished compat regress tests
28 33