LIBS = -lm -lsuntool -lsunwindow -lpixrect

# Choose the compile line that suits you best.
# Note that cc -O4 gives 25% faster code that gcc 1.30. I'm not sure why.
# If you have a later version you may want to try gcc anyway, perhaps
# with fancier optimizations...

FastMtool: FastMtool.c
# GCC, Sun-3 with 68881 math chip.
#	gcc -O -traditional -m68881 -o FastMtool FastMtool.c $(LIBS)
# Sun-3 with SunOS 4, 68881 math chip:
	cc -O4 -f68881 -o FastMtool FastMtool.c $(LIBS)
# Sun-4 with SunOS 4:
#	cc -O4 -o FastMtool FastMtool.c $(LIBS)
# Other suns, configure for maximum speed yourself:
#	cc -O -o FastMtool FastMtool.c $(LIBS)
