summaryrefslogtreecommitdiff
path: root/examples/helloworld2
diff options
context:
space:
mode:
Diffstat (limited to 'examples/helloworld2')
-rw-r--r--examples/helloworld2/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/helloworld2/Makefile b/examples/helloworld2/Makefile
index d51e27b06a..db11296b93 100644
--- a/examples/helloworld2/Makefile
+++ b/examples/helloworld2/Makefile
@@ -1,8 +1,8 @@
CC = gcc
-helloworld2: helloworld2.c
- $(CC) `gtk-config --cflags` `gtk-config --libs` helloworld2.c -o helloworld2
+helloworld2: helloworld2.c
+ $(CC) `gtk-config --cflags` helloworld2.c -o helloworld2 `gtk-config --libs`
clean:
- rm -f helloworld2
+ rm -f *.o helloworld2