blob: 51383a7779e53acf348520f93aa088acb8f09015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $Id: Makefile.in,v 1.1 2006/02/19 11:50:20 dtucker Exp $
sysconfdir=@sysconfdir@
piddir=@piddir@
srcdir=@srcdir@
top_srcdir=@top_srcdir@
VPATH=@srcdir@
CC=@CC@
LD=@LD@
CFLAGS=@CFLAGS@
CPPFLAGS=-I. -I.. -I$(srcdir) -I$(srcdir)/.. @CPPFLAGS@ @DEFS@
LIBS=@LIBS@
LDFLAGS=-L.. -lopenbsd-compat @LDFLAGS@
LIBCOMPAT=../libopenbsd-compat.a
TESTPROGS=strtonumtest strduptest snprintftest
all: t-exec ${OTHERTESTS}
t-exec: $(TESTPROGS)
@echo running compat regress tests
@for TEST in ""$?; do \
echo "run test $${TEST}" ... 1>&2; \
./$${TEST} || exit $$? ; \
done
@echo finished compat regress tests
strtonumtest: strtonumtest.c $(LIBCOMPAT)
$(CC) $(CFLAGS) $(CPPFLAGS) -o strtonumtest $< $(LDFLAGS)
strduptest: strduptest.c $(LIBCOMPAT)
$(CC) $(CFLAGS) $(CPPFLAGS) -o strduptest $< $(LDFLAGS)
clean:
rm -f *.o *.a core $(TESTPROGS) valid.out
distclean: clean
rm -f Makefile *~
|