# QuickMul
CXX=g++
CXXFLAGS=-O3
prog=testmul

${prog}:	${prog}.o qmul.o Integer.o
	${CXX} ${CXXFLAGS} ${prog}.o qmul.o Integer.o -o ${prog}

.cc.o: $*.cc Integer.h qmul.h
	${CXX} -c $(CXXFLAGS) $*.cc 

tar:
	tar -cvf TARFILE \
		Integer.cc Integer.hP Integer.h \
		Makefile Notes \
		qmul.cc qmul.h \
		testmul.cc

clean:
	@rm *.o ${prog}

