comparison src/ftgl.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 47558e958113
children bcc26ffe9a0f
comparison
equal deleted inserted replaced
3011:75e142c0004b 3012:100e618349f7
21 cd '$(1)' && automake --gnu 21 cd '$(1)' && automake --gnu
22 cd '$(1)' && autoconf 22 cd '$(1)' && autoconf
23 cd '$(1)' && ./configure \ 23 cd '$(1)' && ./configure \
24 --host='$(TARGET)' \ 24 --host='$(TARGET)' \
25 $(ENABLE_SHARED_OR_STATIC) \ 25 $(ENABLE_SHARED_OR_STATIC) \
26 --prefix='$(PREFIX)/$(TARGET)' \ 26 --prefix='$(HOST_PREFIX)' \
27 --without-x \ 27 --without-x \
28 --disable-freetypetest \ 28 --disable-freetypetest \
29 --with-ft-prefix='$(PREFIX)/$(TARGET)' 29 --with-ft-prefix='$(HOST_PREFIX)'
30 $(MAKE) -C '$(1)/src' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= 30 $(MAKE) -C '$(1)/src' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
31 $(MAKE) -C '$(1)/src' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= 31 $(MAKE) -C '$(1)/src' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
32 endef 32 endef