############################################### # makefile2 (Non-File Targets) ############################################### ############################################### # Build rules for non-file targets ############################################### all: testintmath clobber: clean rm -f *~ \#*\# core clean: rm -f testintmath *.o ############################################### # Build rules for file targets ############################################### 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