summaryrefslogtreecommitdiff
path: root/examples/scribble-simple/Makefile
blob: 4a60e7fbba711a2ad96e079c45a66b7b344c5616 (plain)
1
2
3
4
5
6
7
8

CC = gcc

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

clean: 
	rm -f *.o scribble-simple