OUTPUT= cd SRC= main.cpp \ appContext.cpp \ history.cpp \ exception.cpp OBJ= $(SRC:.cpp=.o) CXXFLAGS= -std=c++17 -g3 -W -Wall -Wextra $(OUTPUT): all all: $(OBJ) $(CXX) $(OBJ) -o $(OUTPUT) $(LDDFLAGS) fclean: clean $(RM) $(OUTPUT) clean: $(RM) $(OBJ) re: fclean all .PHONY: all fclean clean all