summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..8d7262a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+
+all: sayhello sayhello-spanish.so sayhello-swedish.so sayhello-stderr.so
+
+sayhello: sayhello.c
+ $(CC) -o $@ $(CFLAGS) $<
+
+sayhello-%.so: sayhello-%.c
+ $(CC) -o $@ $(CFLAGS) -shared $<
+
+
+clean:
+ rm -f sayhello sayhello-*.so