| 123456789101112131415161718192021222324252627 |
- 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
|