comparison src/libcroco.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 4d0f3a9da57e
children 100e618349f7
comparison
equal deleted inserted replaced
2854:54522aaf400c 2855:47558e958113
17 endef 17 endef
18 18
19 define $(PKG)_BUILD 19 define $(PKG)_BUILD
20 cd '$(1)' && ./configure \ 20 cd '$(1)' && ./configure \
21 --host='$(TARGET)' \ 21 --host='$(TARGET)' \
22 --disable-shared \ 22 $(ENABLE_SHARED_OR_STATIC) \
23 --prefix='$(PREFIX)/$(TARGET)' \ 23 --prefix='$(PREFIX)/$(TARGET)' \
24 --disable-gtk-doc 24 --disable-gtk-doc
25 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= 25 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
26 endef 26 endef