1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-13 09:23:41 +03:00
openwrt-xburst/package/tapi_sip/src/Makefile
blogic 6ea7ec75d2 [ifxmips]
* adds a rewrite of the tapi drivers + sip app. this is the result of lars' gsoc 2010 project, Thanks !


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23840 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-11-03 19:12:34 +00:00

22 lines
423 B
Makefile

ifndef CFLAGS
CFLAGS = -O2 -g -I ../src
endif
CFLAGS += -Werror -Wall -std=gnu99
PJ_CFLAGS ?= `pkg-config libpjproject --cflags`
PJ_LDFLAGS ?= `pkg-config libpjproject --libs`
CFLAGS += $(PJ_CFLAGS)
LDFLAGS += $(PJ_LDFLAGS)
FPIC=-fPIC
all: tapi-sip
%.o: %.c
$(CC) -c -o $@ $^ $(CFLAGS)
tapi-sip: contact.o session.o tapi_agent.o tapi_sip.o sip_client.o stun.o dialdetector.o
$(CC) -o $@ $^ -ltapi -luci $(LDFLAGS)