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

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

testintmath: testintmath.o intmath.o
	gcc -Wall -ansi -pedantic testintmath.o intmath.o -o testintmath

testintmath.o: testintmath.c intmath.h
	gcc -Wall -ansi -pedantic -c testintmath.c

intmath.o: intmath.c intmath.h
	gcc -Wall -ansi -pedantic -c intmath.c
