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

CC = gcc

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

clean: 
	rm -f *.o clist