]> rtime.felk.cvut.cz Git - hornmich/skoda-qr-demo.git/blob - QRScanner/mobile/jni/thirdparty/curl/tests/Makefile.am
Add MuPDF native source codes
[hornmich/skoda-qr-demo.git] / QRScanner / mobile / jni / thirdparty / curl / tests / Makefile.am
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
23 HTMLPAGES = testcurl.html runtests.html
24 PDFPAGES = testcurl.pdf runtests.pdf
25
26 EXTRA_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
32 # we have two variables here to make sure DIST_SUBDIRS won't get 'unit'
33 # added twice as then targets such as 'distclean' misbehave and try to
34 # do things twice in that subdir at times (and thus fails).
35 if BUILD_UNITTESTS
36 BUILD_UNIT = unit
37 DIST_UNIT =
38 else
39 BUILD_UNIT =
40 DIST_UNIT = unit
41 endif
42
43 SUBDIRS = certs data server libtest $(BUILD_UNIT)
44 DIST_SUBDIRS = $(SUBDIRS) $(DIST_UNIT)
45
46 PERLFLAGS = -I$(srcdir)
47
48 CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid
49
50 MAN2HTML= roffit < $< >$@
51
52 curl:
53         @cd $(top_builddir) && $(MAKE)
54
55 if CROSSCOMPILING
56 TEST = @echo "NOTICE: we can't run the tests when cross-compiling!"
57 else # if not cross-compiling:
58 TEST = srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl
59 TEST_Q = -a -s
60 TEST_AM = -a -am
61 TEST_F = -a -p -r
62 TEST_T = -a -t
63 endif
64
65 # make sure that PERL is pointing to an executable
66 perlcheck:
67         @if ! test -x "$(PERL)"; then echo "No perl!"; exit 2; fi
68
69 test: perlcheck all
70         $(TEST)
71
72 quiet-test: perlcheck all
73         $(TEST) $(TEST_Q)
74
75 am-test: perlcheck all
76         $(TEST) $(TEST_AM)
77
78 full-test: perlcheck all
79         $(TEST) $(TEST_F)
80
81 torture-test: perlcheck all
82         $(TEST) $(TEST_T)
83
84 .1.html:
85         $(MAN2HTML)
86
87 .1.pdf:
88         @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
89         groff -Tps -man $< >$$foo.ps; \
90         ps2pdf $$foo.ps $@; \
91         rm $$foo.ps; \
92         echo "converted $< to $@")