###############################################
# makefile1 (Dependency Rules)
###############################################

###############################################
# Build Rules
###############################################

testintmath: testintmath.o intmath.o
	gcc -o testintmath testintmath.o intmath.o

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

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

