15 lines
279 B
Makefile
15 lines
279 B
Makefile
|
BASE=/usr/src/freeswitch.trunk
|
||
|
OZ_DIR=..
|
||
|
VERBOSE=1
|
||
|
OZA=$(OZ_DIR)/libopenzap.a
|
||
|
LOCAL_CFLAGS=-w -I$(OZ_DIR)/src/include -I$(OZ_DIR)/src/isdn/include
|
||
|
LOCAL_LIBADD=$(OZA)
|
||
|
include $(BASE)/build/modmake.rules
|
||
|
|
||
|
local_depend: $(OZA)
|
||
|
|
||
|
$(OZA):
|
||
|
cd $(OZ_DIR) && $(MAKE) ZAP_MODS=wanpipe
|
||
|
|
||
|
|