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

CC = gcc

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

clean: 
	rm -f *.o fixed