makefile 184 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 all: operator koenig.o operator: operator.cpp g++ -g -Wall -pedantic $^ -o $@ koenig.o: koenig.cpp g++ -c -g -Wall -pedantic $^ -o $@ .PHONY: clean clean: -rm operator koenig.o