1#***************************************************************************
2#                                  _   _ ____  _
3#  Project                     ___| | | |  _ \| |
4#                             / __| | | | |_) | |
5#                            | (__| |_| |  _ <| |___
6#                             \___|\___/|_| \_\_____|
7#
8# Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
9#
10# This software is licensed as described in the file COPYING, which
11# you should have received as part of this distribution. The terms
12# are also available at http://curl.haxx.se/docs/copyright.html.
13#
14# You may opt to use, copy, modify, merge, publish, distribute and/or sell
15# copies of the Software, and permit persons to whom the Software is
16# furnished to do so, under the terms of the COPYING file.
17#
18# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19# KIND, either express or implied.
20#
21###########################################################################
22
23HTMLPAGES = testcurl.html runtests.html
24PDFPAGES = testcurl.pdf runtests.pdf
25
26EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl getpart.pm \
27 FILEFORMAT README stunnel.pem memanalyze.pl testcurl.pl valgrind.pm ftp.pm   \
28 sshserver.pl sshhelp.pm testcurl.1 runtests.1 $(HTMLPAGES) $(PDFPAGES) \
29 serverhelp.pm tftpserver.pl rtspserver.pl directories.pm symbol-scan.pl \
30 CMakeLists.txt mem-include-scan.pl valgrind.supp http_pipe.py
31
32DISTCLEANFILES = configurehelp.pm
33
34# we have two variables here to make sure DIST_SUBDIRS won't get 'unit'
35# added twice as then targets such as 'distclean' misbehave and try to
36# do things twice in that subdir at times (and thus fails).
37if BUILD_UNITTESTS
38BUILD_UNIT = unit
39DIST_UNIT =
40else
41BUILD_UNIT =
42DIST_UNIT = unit
43endif
44
45SUBDIRS = certs data server libtest $(BUILD_UNIT)
46DIST_SUBDIRS = $(SUBDIRS) $(DIST_UNIT)
47
48PERLFLAGS = -I$(srcdir)
49
50CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid
51
52MAN2HTML= roffit < $< >$@
53
54curl:
55	@cd $(top_builddir) && $(MAKE)
56
57if CROSSCOMPILING
58TEST = @echo "NOTICE: we can't run the tests when cross-compiling!"
59else # if not cross-compiling:
60TEST = srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl
61TEST_Q = -a -s
62TEST_AM = -a -am
63TEST_F = -a -p -r
64TEST_T = -a -t
65endif
66
67# make sure that PERL is pointing to an executable
68perlcheck:
69	@if ! test -x "$(PERL)"; then echo "No perl!"; exit 2; fi
70
71test: perlcheck all
72	$(TEST)
73
74quiet-test: perlcheck all
75	$(TEST) $(TEST_Q)
76
77am-test: perlcheck all
78	$(TEST) $(TEST_AM)
79
80full-test: perlcheck all
81	$(TEST) $(TEST_F)
82
83torture-test: perlcheck all
84	$(TEST) $(TEST_T)
85
86.1.html:
87	$(MAN2HTML)
88
89.1.pdf:
90	@(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
91	groff -Tps -man $< >$$foo.ps; \
92	ps2pdf $$foo.ps $@; \
93	rm $$foo.ps; \
94	echo "converted $< to $@")
95