-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
54 lines (38 loc) · 1012 Bytes
/
Makefile
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# TARGET #
TARGET := 3DS
LIBRARY := 0
ifeq ($(TARGET),$(filter $(TARGET),3DS WIIU))
ifeq ($(strip $(DEVKITPRO)),)
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro")
endif
endif
# COMMON CONFIGURATION #
NAME := Orchestrina
BUILD_DIR := build
OUTPUT_DIR := output
INCLUDE_DIRS := include
SOURCE_DIRS := source
EXTRA_OUTPUT_FILES :=
LIBRARY_DIRS += $(DEVKITPRO)/libctru $(DEVKITPRO)/portlibs/armv6k
LIBRARIES += sftd freetype sfil sf2d citro3d png jpeg z bz2 ctru m
BUILD_FLAGS :=
RUN_FLAGS :=
VERSION_MAJOR := 0
VERSION_MINOR := 4
VERSION_MICRO := 1
# 3DS CONFIGURATION #
TITLE := $(NAME)
DESCRIPTION := Zelda Instrument Player
AUTHOR := LeifEricson, Ryuzaki_MrL
PRODUCT_CODE := CTR-P-ORCH
UNIQUE_ID := 0xF1020
SYSTEM_MODE := 64MB
SYSTEM_MODE_EXT := Legacy
ICON_FLAGS :=
ROMFS_DIR := romfs
BANNER_AUDIO := meta/audio.wav
BANNER_IMAGE := meta/banner2.png
ICON := meta/icon.png
LOGO := meta/logo.bcma.lz
# INTERNAL #
include buildtools/make_base