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