
# Example makefile - a very simple one

tris: tris.c area.c
	gcc -o tris tris.c area.c -L/usr/X11R6/lib -lX11 -lm

