comparison src/graphicsmagick.mk @ 3012:100e618349f7

Improve handling of prefix directories by defining HOST_PREFIX and BUILD_TOOLS_PREFIX variables in top-level Makefile.
author John W. Eaton <jwe@octave.org>
date Sun, 02 Jun 2013 10:31:04 -0400
parents 4f9b72cf7ee7
children bcc26ffe9a0f
comparison
equal deleted inserted replaced
3011:75e142c0004b 3012:100e618349f7
20 cd '$(1)' && autoconf 20 cd '$(1)' && autoconf
21 cd '$(1)' && ./configure \ 21 cd '$(1)' && ./configure \
22 --host='$(TARGET)' \ 22 --host='$(TARGET)' \
23 --build="`config.guess`" \ 23 --build="`config.guess`" \
24 $(ENABLE_SHARED_OR_STATIC) \ 24 $(ENABLE_SHARED_OR_STATIC) \
25 --prefix='$(PREFIX)/$(TARGET)' \ 25 --prefix='$(HOST_PREFIX)' \
26 --without-modules \ 26 --without-modules \
27 --with-threads \ 27 --with-threads \
28 --with-magick-plus-plus \ 28 --with-magick-plus-plus \
29 --without-perl \ 29 --without-perl \
30 --with-bzlib \ 30 --with-bzlib \
36 --with-jp2 \ 36 --with-jp2 \
37 --with-lcms \ 37 --with-lcms \
38 --with-png \ 38 --with-png \
39 --with-tiff \ 39 --with-tiff \
40 --without-trio \ 40 --without-trio \
41 --with-ttf='$(PREFIX)/$(TARGET)' \ 41 --with-ttf='$(HOST_PREFIX)' \
42 --without-wmf \ 42 --without-wmf \
43 --with-xml \ 43 --with-xml \
44 --with-zlib \ 44 --with-zlib \
45 --without-x \ 45 --without-x \
46 ac_cv_prog_xml2_config='$(PREFIX)/$(TARGET)/bin/xml2-config' \ 46 ac_cv_prog_xml2_config='$(HOST_PREFIX)/bin/xml2-config' \
47 ac_cv_path_xml2_config='$(PREFIX)/$(TARGET)/bin/xml2-config' 47 ac_cv_path_xml2_config='$(HOST_PREFIX)/bin/xml2-config'
48 $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= 48 $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS=
49 $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= 49 $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS=
50 endef 50 endef