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