slutpet/Makefile
2025-05-26 15:02:11 +10:00

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