blob: d864bb2004a7349a15021f4bfa68677691a37082 [file] [log] [blame]
cristy6f242582012-12-01 01:40:29 +00001#!/bin/sh
Cristy7ce65e72015-12-12 18:03:16 -05002# Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003# dedicated to making software imaging solutions freely available.
4#
5# You may not use this file except in compliance with the License. You may
6# obtain a copy of the License at
7#
8# http://www.imagemagick.org/script/license.php
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# Copyright (C) 2003 - 2009 GraphicsMagick Group
17#
18# Check script for building PerlMagick.
19
20echo "LD_LIBRARY_PATH='${LD_LIBRARY_PATH}'"
21echo "MAGICK_CODER_MODULE_PATH='${MAGICK_CODER_MODULE_PATH}'"
22echo "MAGICK_CONFIGURE_PATH='${MAGICK_CONFIGURE_PATH}'"
23echo "MAGICK_FILTER_MODULE_PATH='${MAGICK_FILTER_MODULE_PATH}'"
24echo "MAKE='${MAKE}'"
25echo "MAKEFLAGS='${MAKEFLAGS}'"
26echo "MEMCHECK='${MEMCHECK}'"
27echo "PATH='${PATH}'"
28echo "SRCDIR='${SRCDIR}'"
29echo "srcdir='${srcdir}'"
30
31set -x
32
33SRCDIR=`dirname $0`
34SRCDIR=`cd $SRCDIR && pwd`
35TOPSRCDIR=`cd $srcdir && pwd`
36
37cd PerlMagick || exit 1
38
39if test -z "${MAKE}" ; then
40 MAKE=make
41fi
42
43if test -x PerlMagick -a -f Makefile.aperl ; then
44 # Static build test incantation
cristya7cb4312010-06-26 00:47:03 +000045 ${MAKE} -f Makefile.aperl CC='@CC@' TEST_VERBOSE=1 test
cristy3ed852e2009-09-05 21:47:34 +000046elif test -f Makefile -a -f Magick.o; then
47 # Shared build test incantation
cristya7cb4312010-06-26 00:47:03 +000048 ${MAKE} CC='@CC@' TEST_VERBOSE=1 test
cristy3ed852e2009-09-05 21:47:34 +000049else
50 echo 'PerlMagick has not been built!'
51 exit 1
52fi