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

CC = gcc

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

clean: 
	rm -f *.o clist