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

CC = gcc

helloworld: helloworld.c 
	$(CC) `pkg-config --cflags gtk+-2.0`  helloworld.c -o helloworld `pkg-config --libs gtk+-2.0`

clean: 
	rm -f *.o helloworld