mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-19 06:21:05 +02:00
6ea7ec75d2
* 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
22 lines
423 B
Makefile
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)
|