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

CC = gcc

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

clean: 
	rm -f *.o table