slutpet/Makefile
2025-05-26 13:08:18 +10:00

15 lines
243 B
Makefile

# 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
all: slutpet
slutpet: ${SRCS}
.PHONY: clean
clean:
-rm -f slutpet