15 lines
258 B
Makefile
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
|