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

CC = gcc

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

clean: 
	rm -f *.o notebook