mirror of git://anongit.mindrot.org/openssh.git
40 lines
891 B
Makefile
40 lines
891 B
Makefile
# $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 *~
|