summaryrefslogtreecommitdiff
path: root/examples/table/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/table/Makefile')
-rw-r--r--examples/table/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/table/Makefile b/examples/table/Makefile
new file mode 100644
index 0000000000..550c82036a
--- /dev/null
+++ b/examples/table/Makefile
@@ -0,0 +1,8 @@
+
+CC = gcc
+
+table: table.c
+ $(CC) `gtk-config --cflags` `gtk-config --libs` table.c -o table
+
+clean:
+ rm -f *.o table