diff --git a/Makefile b/Makefile index f16a5b5..a1a9c76 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,9 @@ -CPP=g++ - OBJS := 00-const-vars/const.o 00-const-vars/no-const.o 01-inline-functions/inline.o 01-inline-functions/no-inline.o 02-pass-by-ref/ref.o 02-pass-by-ref/no-ref.o all: $(OBJS) %.o: %.cpp - $(CPP) $< -o $@ -c + $(CXX) $< -o $@ -c .PHONY: clean all