comparison src/xmlwrapp.mk @ 3013:bcc26ffe9a0f

use variable for --host and --build configure arguments
author John W. Eaton <jwe@octave.org>
date Sun, 02 Jun 2013 12:40:32 -0400
parents 100e618349f7
children 951da75fd09c
comparison
equal deleted inserted replaced
3012:100e618349f7 3013:bcc26ffe9a0f
15 head -1 15 head -1
16 endef 16 endef
17 17
18 define $(PKG)_BUILD 18 define $(PKG)_BUILD
19 cd '$(1)' && ./configure \ 19 cd '$(1)' && ./configure \
20 --host='$(TARGET)' \ 20 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
21 $(ENABLE_SHARED_OR_STATIC) \ 21 $(ENABLE_SHARED_OR_STATIC) \
22 --prefix='$(HOST_PREFIX)' \ 22 --prefix='$(HOST_PREFIX)' \
23 PKG_CONFIG='$(TARGET)-pkg-config' 23 PKG_CONFIG='$(TARGET)-pkg-config'
24 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= html_DATA= 24 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= html_DATA=
25 endef 25 endef