mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4602 d0543943-73ff-0310-b7d9-9358b9ac24b2
31 lines
743 B
Makefile
31 lines
743 B
Makefile
# define these targets in your makefile if you wish
|
|
# local_all local_depend local_clean depend_install local_install local_distclean local_extraclean:
|
|
|
|
# and define these variables to impact your build
|
|
MODNAME=mod_dingaling
|
|
BASE=../../../..
|
|
|
|
IKSEMELLA=$(BASE)/libs/iksemel/src/libiksemel.la
|
|
DINGLA=$(BASE)/libs/libdingaling/libdingaling.la
|
|
|
|
LOCAL_CFLAGS=-I$(BASE)/libs/libdingaling/src
|
|
LOCAL_LDFLAGS=
|
|
LOCAL_OBJS=
|
|
LOCAL_LIBADD=$(DINGLA)
|
|
|
|
include $(BASE)/build/modmake.rules
|
|
|
|
INST_DINGLA=$(PREFIX)/lib/libdingaling.la
|
|
|
|
$(IKSEMELLA):
|
|
cd $(BASE)/libs/iksemel && $(MAKE)
|
|
|
|
$(DINGLA): $(IKSEMELLA)
|
|
cd $(BASE)/libs/libdingaling && $(MAKE)
|
|
|
|
depend_install: $(INST_DINGLA)
|
|
|
|
$(INST_DINGLA): $(DINGLA)
|
|
cd $(BASE)/libs/libdingaling && $(MAKE) install
|
|
|