|
Revision 1, 1.0 KB
(checked in by cristy, 3 months ago)
|
|
|
| Line | |
|---|
| 1 | # Copyright 1999-2009 ImageMagick Studio LLC, a non-profit organization |
|---|
| 2 | # dedicated to making software imaging solutions freely available. |
|---|
| 3 | # |
|---|
| 4 | # You may not use this file except in compliance with the License. |
|---|
| 5 | # obtain a copy of the License at |
|---|
| 6 | # |
|---|
| 7 | # http://www.wizards-toolkit.org/script/license.php |
|---|
| 8 | # |
|---|
| 9 | # Unless required by applicable law or agreed to in writing, software |
|---|
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
|---|
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|---|
| 12 | # See the License for the specific language governing permissions and |
|---|
| 13 | # limitations under the License. |
|---|
| 14 | # |
|---|
| 15 | # Makefile for Wizard's Toolkit tests invoked via the C API. |
|---|
| 16 | |
|---|
| 17 | TESTS_CHECK_PGRMS = \ |
|---|
| 18 | tests/validate |
|---|
| 19 | |
|---|
| 20 | tests_validate_SOURCES = tests/validate.c tests/validate.h |
|---|
| 21 | tests_validate_CPPFLAGS = $(AM_CPPFLAGS) |
|---|
| 22 | tests_validate_LDADD = $(WIZARD_LIBS) |
|---|
| 23 | |
|---|
| 24 | TESTS_XFAIL_TESTS = |
|---|
| 25 | |
|---|
| 26 | TESTS_TESTS = \ |
|---|
| 27 | tests/validate.sh |
|---|
| 28 | |
|---|
| 29 | TESTS_EXTRA_DIST = \ |
|---|
| 30 | tests/common.sh \ |
|---|
| 31 | tests/passphrase.txt \ |
|---|
| 32 | $(TESTS_TESTS) |
|---|
| 33 | |
|---|
| 34 | TESTS_CLEANFILES = |
|---|