first commit

This commit is contained in:
Your Name
2026-02-25 08:40:42 -06:00
commit 830c130ded
19 changed files with 677 additions and 0 deletions

18
ncurses test/Makefile Normal file
View File

@@ -0,0 +1,18 @@
# Compiler and flags
CXX = g++
CXXFLAGS = -Wall -Wextra -O2 -std=c++17
# Linker flags
LDFLAGS = -lcurses
# Default target
all: ncursestest
# Build rule
ncursestest: ncursestest.cpp
$(CXX) $(CXXFLAGS) ncursestest.cpp -o ncursestest $(LDFLAGS)
# Clean build artifacts
clean:
rm -f ncursestest