diff options
Diffstat (limited to 'examples/table/Makefile')
-rw-r--r-- | examples/table/Makefile | 8 |
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 |