summaryrefslogtreecommitdiff
path: root/openvpn/src/plugins/examples/build
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-04-16 19:21:14 +0200
committerArne Schwabe <arne@rfc2549.org>2012-04-16 19:21:14 +0200
commit3e4d8f433239c40311037616b1b8833a06651ae0 (patch)
tree98ab7fce0d011d34677b0beb762d389cb5c39199 /openvpn/src/plugins/examples/build
Initial import
Diffstat (limited to 'openvpn/src/plugins/examples/build')
-rwxr-xr-xopenvpn/src/plugins/examples/build15
1 files changed, 15 insertions, 0 deletions
diff --git a/openvpn/src/plugins/examples/build b/openvpn/src/plugins/examples/build
new file mode 100755
index 00000000..bbb05f7c
--- /dev/null
+++ b/openvpn/src/plugins/examples/build
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+#
+# Build an OpenVPN plugin module on *nix. The argument should
+# be the base name of the C source file (without the .c).
+#
+
+# This directory is where we will look for openvpn-plugin.h
+CPPFLAGS="${CPPFLAGS:--I../../..}"
+
+CC="${CC:-gcc}"
+CFLAGS="${CFLAGS:--O2 -Wall -g}"
+
+$CC $CPPFLAGS $CFLAGS -fPIC -c $1.c && \
+$CC $CFLAGS -fPIC -shared $LDFLAGS -Wl,-soname,$1.so -o $1.so $1.o -lc