# TODO: figure out mingw-w64 cross-compilation PREFIX ?= /usr/local CFLAGS := $(CFLAGS) `pkg-config --cflags --libs sdl3` LDFLAGS := $(LDFLAGS) -lm SRCS = slutpet.c img.c samply.c sdl.c all: slutpet slutpet: ${SRCS} .PHONY: clean clean: -rm -f slutpet