makefile 168 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 testvector: testvector.o g++ -g $^ -o $@ testvector.o: testvector.cpp vector.h g++ -g -c -Wall -pedantic $< -o $@ .PHONY: clean clean: -rm testvector.o testvector