@@ -0,0 +1,16 @@
CXX = g++
CXXFLAGS = -std=c++17 -Wall -Wextra -Iinclude
SRC = $(wildcard src/*.cpp)
OUT = build/game
all: $(OUT)
$(OUT): $(SRC)
mkdir -p build
$(CXX) $(CXXFLAGS) $(SRC) -o $(OUT)
run: all
./$(OUT)
clean:
rm -rf build
The note is not visible to the blocked user.