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