summaryrefslogtreecommitdiff
path: root/examples/table/Makefile
blob: 550c82036a74e4baf33b421c600ffa00ebf3fdfc (plain)
1
2
3
4
5
6
7
8

CC = gcc

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

clean: 
	rm -f *.o table