diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3bddfd3 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CXX = g++ +CXXFLAGS = -std=c++23 -Wall -pedantic -Werror -Wextra +TARGET = dotdash +SOURCE = main.cpp + +$(TARGET): $(SOURCE) + $(CXX) $(CXXFLAGS) -o $(TARGET) $(SOURCE) + +clean: + rm -f $(TARGET) + +.PHONY: clean +