mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-26 08:48:44 +00:00
Remove gmakeisms from the modmake.rules module makefile include Remove the MODNAME def from all the in tree Makefiles git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4628 d0543943-73ff-0310-b7d9-9358b9ac24b2
18 lines
953 B
Makefile
18 lines
953 B
Makefile
|
|
VERSION = mono-1.1.13.8
|
|
TARBALL = mono-1.1.13.8.tar.gz
|
|
GLIB_TARBALL = glib-2.12.3.tar.gz
|
|
GETTEXT_TARBALL = gettext-0.15.tar.gz
|
|
PKGCONFIG_TARBALL = pkg-config-0.21.tar.gz
|
|
|
|
LOCAL_CFLAGS=`$(PREFIX)/bin/pkg-config --cflags mono`
|
|
LOCAL_LDFLAGS=`$(PREFIX)/bin/pkg-config --libs mono`
|
|
include ../../../../build/modmake.rules
|
|
|
|
local_depend:
|
|
MAKE=$(MAKE) $(BASE)/build/buildlib.sh $(BASE) configure install $(GETTEXT_TARBALL) --prefix=$(PREFIX) --with-pic
|
|
MAKE=$(MAKE) $(BASE)/build/buildlib.sh $(BASE) configure install $(PKGCONFIG_TARBALL) --prefix=$(PREFIX) --with-pic
|
|
export PKG_CONFIG=$(PREFIX)/bin/pkg-config; export MSGFMT=$(PREFIX)/bin/; MAKE=$(MAKE) $(BASE)/build/buildlib.sh $(BASE) configure install $(GLIB_TARBALL) --prefix=$(PREFIX) --with-pic
|
|
export PATH=$(PATH):$(PREFIX)/bin/; MAKE=$(MAKE) $(BASE)/build/buildlib.sh $(BASE) configure install $(TARBALL) --prefix=$(PREFIX) --with-pic --with-gc=boehm --with-preview=yes --without-sigaltstack
|
|
|