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