@@ -0,0 +1,15 @@
# Compiler and flags
CXX = g++
CXXFLAGS = -pthread -Wall -Wextra -O2 -std=c++17 -lcurses
# Targets
all: main
# Client build
main: main.cpp
$(CXX) $(CXXFLAGS) main.cpp -o main
# Clean build artifacts
clean:
rm -f main
The note is not visible to the blocked user.