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

CC = gcc

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

clean: 
	rm -f *.o buttons