first commit

This commit is contained in:
YANNIS
2025-05-23 00:57:27 +02:00
commit 7bae3bcc57
4 changed files with 93 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# 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