-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (32 loc) · 787 Bytes
/
Copy pathMakefile
File metadata and controls
34 lines (32 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
TARGET := $(notdir $(CURDIR))
BUILD := build
LIBBUTANO := ../butano.official/butano
PYTHON := python3
SOURCES := include \
src \
src/examples \
src/examples/suites \
../butano.official/common/src
INCLUDES := include \
../butano.official/butano/include \
../butano.official/common/include
DATA :=
GRAPHICS := ../butano.official/common/graphics
AUDIO :=
DMGAUDIO :=
ROMTITLE := ALLUREGBA
ROMCODE := NPAR
USERFLAGS := -std=gnu11
USERCXXFLAGS :=
USERASFLAGS :=
USERLDFLAGS :=
USERLIBDIRS :=
USERLIBS :=
DEFAULTLIBS :=
STACKTRACE :=
USERBUILD :=
EXTTOOL :=
ifndef LIBBUTANOABS
export LIBBUTANOABS := $(realpath $(LIBBUTANO))
endif
include $(LIBBUTANOABS)/butano.mak