mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 02:18:57 +00:00
17 lines
570 B
Makefile
17 lines
570 B
Makefile
|
#MOD_CFLAGS=`pkg-config --cflags --libs mono`
|
||
|
MOD_CFLAGS=-D_REENTRANT -pthread -I/opt/mono-1.9/lib/pkgconfig/../../include/mono-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -lmono
|
||
|
#LDFLAGS=`pkg-config --libs mono`
|
||
|
BASE=../../../..
|
||
|
VERBOSE=1
|
||
|
include $(BASE)/build/modmake.rules
|
||
|
LOCAL_OBJS=freeswitch_mono.o freeswitch_wrap.o
|
||
|
local_depend: $(LOCAL_OBJS)
|
||
|
|
||
|
freeswitch_mono.o: freeswitch_mono.h freeswitch_mono.cpp
|
||
|
|
||
|
freeswitch_wrap.o: freeswitch_wrap.cpp
|
||
|
|
||
|
freeswitch_wrap.cpp: freeswitch_wrap.cxx
|
||
|
cp freeswitch_wrap.cxx freeswitch_wrap.cpp
|
||
|
|