aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 88cd5d7c92f7332041534487db32160e9331985d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CXXFLAGS := -std=c++23 -O0 -g3 -ggdb \
            -Iinclude -Ientt/single_include
LDFLAGS := -lSDL2 -lSDL2_image

OBJS := $(subst .cpp,.o,$(wildcard *.cpp))

all: game

clean:
	rm -f game $(OBJS)

game: $(OBJS)
	$(CXX) $(CXXFLAGS) $^ -o $@ $(LDFLAGS)