CC = g++ CFLAGS = -fexternal-templates -fhandle-exceptions -g .SUFFIXES: .SUFFIXES .cpp .cpp.o: ${CC} -c $< ${CFLAGS} tt: ilist.o test.o ${CC} -o tt ilist.o test.o ${CFLAGS} ilist.o: ilist.h ilist_inst.h test.o: ilist.h