
CC = gcc

LDFLAGS='-Wl,-brtl'

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

clean: 
	rm -f *.o fixed
