2001-05-23 17:02:58 +02:00
|
|
|
EXTRA_DIST = ftpserver.pl httpserver.pl runtests.pl ftpsserver.pl stunnel.pm \
|
|
|
|
getpart.pm
|
2001-01-08 18:38:23 +01:00
|
|
|
|
|
|
|
SUBDIRS = data
|
2000-11-10 16:24:09 +01:00
|
|
|
|
2001-05-28 23:49:45 +02:00
|
|
|
PERLFLAGS = -I$(srcdir)
|
|
|
|
|
2000-11-12 16:11:50 +01:00
|
|
|
all:
|
|
|
|
install:
|
|
|
|
|
2000-11-22 15:15:15 +01:00
|
|
|
curl:
|
|
|
|
@(cd ..; make)
|
|
|
|
|
2000-11-10 16:24:09 +01:00
|
|
|
test:
|
2001-01-08 23:18:30 +01:00
|
|
|
$(MAKE) -C data test
|
2001-05-28 23:49:45 +02:00
|
|
|
srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl
|
2000-11-10 16:24:09 +01:00
|
|
|
|
2000-11-17 16:30:01 +01:00
|
|
|
quiet-test:
|
2001-01-08 23:18:30 +01:00
|
|
|
$(MAKE) -C data test
|
2001-05-28 23:49:45 +02:00
|
|
|
srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl -s -a
|
2000-11-17 16:30:01 +01:00
|
|
|
|
2000-11-10 16:24:09 +01:00
|
|
|
clean:
|
|
|
|
rm -rf log
|
|
|
|
find . -name "*~" | xargs rm -f
|
2000-11-17 16:30:01 +01:00
|
|
|
|