mirror of
https://github.com/Interlisp/maiko.git
synced 2026-03-20 16:28:12 +00:00
15 lines
265 B
Makefile
15 lines
265 B
Makefile
# Common Options for Linux using SDL instead of X Windows
|
|
|
|
XFILES = $(OBJECTDIR)sdl.o
|
|
|
|
#
|
|
# For SDL version 2
|
|
# -DSDL=2 in XFLAGS and -lSDL2 in LDFLAGS
|
|
# For SDL version 3
|
|
# -DSDL=3 in XFLAGS and -lSDL3 in LDFLAGS
|
|
#
|
|
XFLAGS = -DSDL=2
|
|
|
|
XLDFLAGS ?= -lSDL2
|
|
|