CPPFLAGS = $(shell sdl2-config --cflags --libs) run: game ./game game: World.o main.o $(CXX) -o $@ $(CPPFLAGS) $^ clean: rm -f game rm -f *.o