mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-24 19:22:03 +00:00
20 lines
463 B
Plaintext
20 lines
463 B
Plaintext
# Options for MacOS, arm64 (aka aarch64) processor, SDL
|
|
|
|
CC = clang -target aarch64-apple-darwin $(CLANG_CFLAGS)
|
|
|
|
XFILES = $(OBJECTDIR)sdl.o
|
|
|
|
SDLFLAGS = -DSDL -F /Library/Frameworks
|
|
|
|
# OPTFLAGS is normally -O2.
|
|
OPTFLAGS = -O2 -g
|
|
DEBUGFLAGS = # -DDEBUG -DOPTRACE
|
|
DFLAGS = $(DEBUGFLAGS) $(SDLFLAGS) -DRELEASE=351
|
|
|
|
LDFLAGS = -F /Library/Frameworks -framework SDL2
|
|
LDELDFLAGS =
|
|
|
|
OBJECTDIR = ../$(RELEASENAME)/
|
|
|
|
default : ../$(OSARCHNAME)/lde ../$(OSARCHNAME)/ldesdl
|