comparison src/lcms.mk @ 2855:47558e958113

Allow static/shared libraries to be configured in top-level Makefile.
author John W. Eaton <jwe@octave.org>
date Thu, 15 Nov 2012 16:11:45 -0500
parents 382711917f93
children 100e618349f7
comparison
equal deleted inserted replaced
2854:54522aaf400c 2855:47558e958113
18 define $(PKG)_BUILD 18 define $(PKG)_BUILD
19 cd '$(1)' && ./configure \ 19 cd '$(1)' && ./configure \
20 --prefix='$(PREFIX)/$(TARGET)' \ 20 --prefix='$(PREFIX)/$(TARGET)' \
21 --host='$(TARGET)' \ 21 --host='$(TARGET)' \
22 --build="`config.guess`" \ 22 --build="`config.guess`" \
23 --disable-shared \ 23 $(ENABLE_SHARED_OR_STATIC) \
24 --with-jpeg \ 24 --with-jpeg \
25 --with-tiff \ 25 --with-tiff \
26 --with-zlib 26 --with-zlib
27 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS= 27 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS=
28 endef 28 endef