| 1 | # !/bin/sh |
|---|
| 2 | # |
|---|
| 3 | # Copyright 1999-2006 ImageMagick Studio LLC, a non-profit organization |
|---|
| 4 | # dedicated to making software imaging solutions freely available. |
|---|
| 5 | # |
|---|
| 6 | # You may not use this file except in compliance with the License. You may |
|---|
| 7 | # obtain a copy of the License at |
|---|
| 8 | # |
|---|
| 9 | # http://www.imagemagick.org/script/license.php |
|---|
| 10 | # |
|---|
| 11 | # Unless required by applicable law or agreed to in writing, software |
|---|
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
|---|
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|---|
| 14 | # See the License for the specific language governing permissions and |
|---|
| 15 | # limitations under the License. |
|---|
| 16 | # |
|---|
| 17 | # Top-Level Makefile for building ImageMagick. |
|---|
| 18 | |
|---|
| 19 | top_srcdir='/home/cristy/ImageMagick/ImageMagick' |
|---|
| 20 | top_builddir='/home/cristy/ImageMagick/ImageMagick' |
|---|
| 21 | |
|---|
| 22 | MAGICK_CODER_MODULE_PATH='/home/cristy/ImageMagick/ImageMagick/coders' |
|---|
| 23 | MAGICK_CONFIGURE_SRC_PATH='/home/cristy/ImageMagick/ImageMagick/config' |
|---|
| 24 | MAGICK_CONFIGURE_BUILD_PATH='/home/cristy/ImageMagick/ImageMagick/config' |
|---|
| 25 | MAGICK_FILTER_MODULE_PATH='/home/cristy/ImageMagick/ImageMagick/filters' |
|---|
| 26 | DIRSEP=':' |
|---|
| 27 | |
|---|
| 28 | PATH="${top_builddir}/utilities:${PATH}" |
|---|
| 29 | |
|---|
| 30 | if test -n "$VERBOSE" |
|---|
| 31 | then |
|---|
| 32 | echo "$@" |
|---|
| 33 | fi |
|---|
| 34 | env \ |
|---|
| 35 | LD_LIBRARY_PATH="${top_builddir}/magick/.libs:${top_builddir}/wand/.libs:${LD_LIBRARY_PATH}" \ |
|---|
| 36 | MAGICK_CODER_MODULE_PATH="${MAGICK_CODER_MODULE_PATH}" \ |
|---|
| 37 | MAGICK_CONFIGURE_PATH="${MAGICK_CONFIGURE_BUILD_PATH}${DIRSEP}${MAGICK_CONFIGURE_SRC_PATH}" \ |
|---|
| 38 | MAGICK_FILTER_MODULE_PATH="${MAGICK_FILTER_MODULE_PATH}" \ |
|---|
| 39 | PATH="${PATH}" \ |
|---|
| 40 | "$@" |
|---|