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

CC = gcc

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

clean: 
	rm -f *.o helloworld2