diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-08-17 19:40:35 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-08-17 19:40:35 +1000 |
commit | c889ffdbc6329f21d2437b3c3d17eba0960969fc (patch) | |
tree | e359beed30d3dae81752e1eaa101c2e3caed8c5b /openbsd-compat/regress/Makefile.in | |
parent | 3083bc2b52fe00b5c5fe87dd3638969835dab0e8 (diff) |
- (dtucker) [openbsd-compat/regress/{Makefile.in,closefromtest.c}] Regress
test for closefrom() in compat code.
Diffstat (limited to 'openbsd-compat/regress/Makefile.in')
-rw-r--r-- | openbsd-compat/regress/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/openbsd-compat/regress/Makefile.in b/openbsd-compat/regress/Makefile.in index 51383a777..3a0a4c4da 100644 --- a/openbsd-compat/regress/Makefile.in +++ b/openbsd-compat/regress/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.1 2006/02/19 11:50:20 dtucker Exp $ | 1 | # $Id: Makefile.in,v 1.2 2006/08/17 09:40:35 dtucker Exp $ |
2 | 2 | ||
3 | sysconfdir=@sysconfdir@ | 3 | sysconfdir=@sysconfdir@ |
4 | piddir=@piddir@ | 4 | piddir=@piddir@ |
@@ -14,7 +14,7 @@ LIBS=@LIBS@ | |||
14 | LDFLAGS=-L.. -lopenbsd-compat @LDFLAGS@ | 14 | LDFLAGS=-L.. -lopenbsd-compat @LDFLAGS@ |
15 | 15 | ||
16 | LIBCOMPAT=../libopenbsd-compat.a | 16 | LIBCOMPAT=../libopenbsd-compat.a |
17 | TESTPROGS=strtonumtest strduptest snprintftest | 17 | TESTPROGS=closefromtest strtonumtest strduptest snprintftest |
18 | 18 | ||
19 | all: t-exec ${OTHERTESTS} | 19 | all: t-exec ${OTHERTESTS} |
20 | 20 | ||
@@ -32,6 +32,9 @@ strtonumtest: strtonumtest.c $(LIBCOMPAT) | |||
32 | strduptest: strduptest.c $(LIBCOMPAT) | 32 | strduptest: strduptest.c $(LIBCOMPAT) |
33 | $(CC) $(CFLAGS) $(CPPFLAGS) -o strduptest $< $(LDFLAGS) | 33 | $(CC) $(CFLAGS) $(CPPFLAGS) -o strduptest $< $(LDFLAGS) |
34 | 34 | ||
35 | closefromtest: closefromtest.c $(LIBCOMPAT) | ||
36 | $(CC) $(CFLAGS) $(CPPFLAGS) -o closefromtest $< $(LDFLAGS) | ||
37 | |||
35 | clean: | 38 | clean: |
36 | rm -f *.o *.a core $(TESTPROGS) valid.out | 39 | rm -f *.o *.a core $(TESTPROGS) valid.out |
37 | 40 | ||