first commit

This commit is contained in:
David Ali
2026-02-04 13:05:01 +01:00
commit 9299ada186
9 changed files with 453 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
CXX = g++
CXXFLAGS = -std=c++17 -O3 -Wall
LDFLAGS = -lraylib
SRC = src/main.cpp
TARGET = arachne
all:
$(CXX) $(SRC) -o $(TARGET) $(CXXFLAGS) $(LDFLAGS)
clean:
rm -f $(TARGET)