Files
nullDBG/Makefile
T
2025-05-23 00:57:27 +02:00

23 lines
284 B
Makefile

# Makefile
CXX = g++
CXXFLAGS = -Wall -Wextra -Werror
SRC = main.cpp Debugger.cpp
OBJ = $(SRC:.cpp=.o)
TARGET = nullDBG
all: $(TARGET)
$(TARGET): $(OBJ)
$(CXX) $(CXXFLAGS) -o $@ $^
clean:
rm -f $(OBJ)
fclean: clean
rm -f $(TARGET)
re: fclean all
.PHONY: all clean fclean re