summaryrefslogtreecommitdiff
path: root/examples/statusbar/Makefile
blob: 8177178c25330ff9a7bb1a720a812ddb14a70e16 (plain)
1
2
3
4
5
6
7
8

CC = gcc

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

clean: 
	rm -f *.o statusbar