From: Anthony Minessale Date: Tue, 21 Feb 2006 18:16:43 +0000 (+0000) Subject: add makefile for wanpipe X-Git-Tag: v1.0-beta1~3212 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1635505808bfd7158fa1232c8e512e632632f00a;p=thirdparty%2Ffreeswitch.git add makefile for wanpipe git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@643 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_wanpipe/Makefile b/src/mod/endpoints/mod_wanpipe/Makefile new file mode 100644 index 0000000000..32d6d44696 --- /dev/null +++ b/src/mod/endpoints/mod_wanpipe/Makefile @@ -0,0 +1,25 @@ +CFLAGS +=-I/usr/local/include -I/usr/src/libpri -I/usr/src/linux/include -I. -I/usr/include +CFLAGS +=-D__LINUX__ -D_REENTRANT -D_GNU_SOURCE -O6 -march=i686 -DAFT_A104 +CFLAGS +=-Wall -Wstrict-prototypes -Wmissing-prototypes -g +LDFLAGS += -lsangoma + + +ifeq ($(OSARCH),Darwin) + LINKER=g++ +else + LINKER=$(CC) +endif + +all: depends $(MODNAME).so + +depends: + +$(MODNAME).so: $(MODNAME).c + $(CC) $(CFLAGS) -fPIC -c $(MODNAME).c -o $(MODNAME).o + $(LINKER) $(SOLINK) -o $(MODNAME).so $(MODNAME).o $(LDFLAGS) + +clean: + rm -fr *.so *.o *~ + +install: + cp -f $(MODNAME).so $(PREFIX)/mod