@@ -0,0 +1,17 @@
CXX = g++
CXXFLAGS = -Iinclude
LDFLAGS = -lSDL3
SRC = src/main.cpp \
src/gfx/circle.cpp \
src/sims/two_bodies.cpp \
src/utils/rand.cpp
OUT = sim
$(OUT): $(SRC)
$(CXX) $(CXXFLAGS) $(SRC) -o $(OUT) $(LDFLAGS)
clean:
rm -f $(OUT)
The note is not visible to the blocked user.