2024 Day 1 (and framework). Doing 2025 in zig

This commit is contained in:
2025-11-02 16:42:01 +00:00
parent b89bee9c35
commit 6cf9a4e557
12 changed files with 1337 additions and 58 deletions

View File

@@ -1,15 +0,0 @@
CXX := clang++
CXXFLAGS := -std=c++17 -Wall -Wextra -I.
TARGET := aoc
SRC := aoc.cpp
all: $(TARGET)
$(TARGET): $(SRC)
$(CXX) $(CXXFLAGS) $(SRC) -o $(TARGET)
clean:
rm -f $(TARGET)
.PHONY: all clean