2020-03-23 09:44:29 -04:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
|
|
|
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
###########################################################################
|
2002-12-12 07:13:18 -05:00
|
|
|
iall:
|
2001-01-08 12:28:53 -05:00
|
|
|
install:
|
2001-01-08 17:18:30 -05:00
|
|
|
test:
|
|
|
|
|
2014-10-12 18:00:39 -04:00
|
|
|
# TESTCASES are taken from Makefile.inc
|
|
|
|
include Makefile.inc
|
2011-05-13 02:55:15 -04:00
|
|
|
|
2015-06-25 10:04:41 -04:00
|
|
|
EXTRA_DIST = $(TESTCASES) DISABLED CMakeLists.txt
|
2007-09-30 18:58:24 -04:00
|
|
|
|
|
|
|
filecheck:
|
|
|
|
@mkdir test-place; \
|
2007-10-24 15:40:07 -04:00
|
|
|
cp "$(top_srcdir)"/tests/data/test[0-9]* test-place/; \
|
2008-04-30 17:20:08 -04:00
|
|
|
rm test-place/*~; \
|
2007-09-30 18:58:24 -04:00
|
|
|
for f in $(EXTRA_DIST); do \
|
2007-10-24 15:40:07 -04:00
|
|
|
if test -f "$(top_srcdir)/tests/data/$$f"; then \
|
2008-07-29 14:57:01 -04:00
|
|
|
rm -f "test-place/$$f"; \
|
2007-09-30 18:58:24 -04:00
|
|
|
else \
|
|
|
|
echo "$$f is listed but missing!"; \
|
|
|
|
fi \
|
|
|
|
done; \
|
|
|
|
echo "Local files not present in EXTRA_DIST:" ; \
|
|
|
|
ls test-place; \
|
2008-07-29 14:57:01 -04:00
|
|
|
! ls test-place | grep . >/dev/null ; \
|
|
|
|
RC=$$? ; \
|
|
|
|
rm -rf test-place ; \
|
|
|
|
exit $$RC
|
2007-09-30 18:58:24 -04:00
|
|
|
|
2010-01-11 10:50:30 -05:00
|
|
|
show:
|
|
|
|
@echo $(EXTRA_DIST)
|