makefile 225 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 all: unordered_set unordered_set: unordered_set.o g++ -g -Wall -pedantic $^ -o $@ unoredered_set.o: unordered_set.cpp employee.h g++ -g -c -Wall -pedantic $< -o $@ .PHONY: clean clean: -rm unordered_set.o unordered_set