aboutsummaryrefslogtreecommitdiff
path: root/examples/kaas/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/kaas/Makefile')
-rw-r--r--examples/kaas/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/kaas/Makefile b/examples/kaas/Makefile
new file mode 100644
index 0000000..e7d5154
--- /dev/null
+++ b/examples/kaas/Makefile
@@ -0,0 +1,9 @@
+.PHONY: all clean
+
+all: kaas.so
+
+clean:
+ rm -f kaas.so
+
+kaas.so: kaas.c
+ gcc -Wall -Wextra -fPIC -shared $< -o $@