summaryrefslogtreecommitdiff
path: root/examples/helloworld2/Makefile
blob: d51e27b06a361da6a76f529a039e00acab015c36 (plain)
1
2
3
4
5
6
7
8

CC = gcc

helloworld2: helloworld2.c
	$(CC) `gtk-config --cflags` `gtk-config --libs` helloworld2.c -o helloworld2

clean: 
	rm -f helloworld2