#-----------------------------------------------------------------------
# makefile1
# Author: Bob Dondero
# Dependency rules
#-----------------------------------------------------------------------

#-----------------------------------------------------------------------
# Dependency Rules
#-----------------------------------------------------------------------

testintmath: testintmath.o intmath.o
	gcc217 testintmath.o intmath.o -o testintmath

testintmath.o: testintmath.c intmath.h
	gcc217 -c testintmath.c

intmath.o: intmath.c intmath.h
	gcc217 -c intmath.c
