Files
dotdash/Makefile
2025-11-11 11:14:26 +01:00

14 lines
205 B
Makefile

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