slutpet/Makefile
2025-05-28 18:57:21 +10:00

15 lines
258 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 samply.c sdl.c
all: slutpet
slutpet: ${SRCS}
.PHONY: clean
clean:
-rm -f slutpet