diff options
author | Joseph Henry <joseph.henry@zerotier.com> | 2015-10-09 15:41:16 -0400 |
---|---|---|
committer | Joseph Henry <joseph.henry@zerotier.com> | 2015-10-09 15:41:16 -0400 |
commit | e3ec000e93f0eeb365633d36d1a9ce0b139c75b5 (patch) | |
tree | fdb429cb7ad16c4038ab9e2e0af8d161f27e5f94 /make-netcon.mk | |
parent | 769bad332041fd707533c086dc0d2c2f4a57befe (diff) | |
download | infinitytier-e3ec000e93f0eeb365633d36d1a9ce0b139c75b5.tar.gz infinitytier-e3ec000e93f0eeb365633d36d1a9ce0b139c75b5.zip |
Added intercept build file and sources
Diffstat (limited to 'make-netcon.mk')
-rw-r--r-- | make-netcon.mk | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/make-netcon.mk b/make-netcon.mk new file mode 100644 index 00000000..2aa797dd --- /dev/null +++ b/make-netcon.mk @@ -0,0 +1,29 @@ +SHCC=gcc + +# intercept-specific +intercept_CFLAGS = -c -fPIC -g -O2 -Wall -std=c99 -D_GNU_SOURCE -DNETCON_INTERCEPT +LIB_NAME = intercept +SHLIB_EXT=dylib +SHLIB_MAJOR = 1 +SHLIB_MINOR = 8 +COMMON = common +OBJS= netcon/intercept.o +SHLIB = ${LIB_NAME}.${SHLIB_EXT}.${SHLIB_MAJOR}.${SHLIB_MINOR} +SHLDFLAGS = -g -O2 -Wall -I. -nostdlib -shared +LIBS = -ldl -lc -lrt -lpthread + +lib: + ${SHCC} $(intercept_CFLAGS) -I. netcon/intercept.c -o netcon/intercept.o + ${SHCC} $(intercept_CFLAGS) -I. netcon/common.c -o netcon/common.o + ${SHCC} $(intercept_CFLAGS) -I. netcon/sendfd.c -o netcon/sendfd.o + ${SHCC} $(SHLDFLAGS) netcon/intercept.o netcon/common.o netcon/sendfd.o -o netcon/libintercept.so.1.0 $(LIBS) + +install: + cp netcon/libintercept.so.1.0 /lib/libintercept.so.1.0 + ln -sf /lib/libintercept.so.1.0 /lib/libintercept + /usr/bin/install -c netcon/intercept /usr/bin + +uninstall: + rm -r /lib/libintercept.so.1.0 + rm -r /lib/libintercept + rm -r /usr/bin/intercept |