mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-06 03:58:02 +08:00
51 lines
969 B
Makefile
51 lines
969 B
Makefile
# TARGET #
|
|
|
|
TARGET := 3DS
|
|
LIBRARY := 0
|
|
|
|
ifeq ($(TARGET),3DS)
|
|
ifeq ($(strip $(DEVKITPRO)),)
|
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro")
|
|
endif
|
|
|
|
ifeq ($(strip $(DEVKITARM)),)
|
|
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
|
|
endif
|
|
endif
|
|
|
|
# COMMON CONFIGURATION #
|
|
|
|
NAME := FBI
|
|
|
|
BUILD_DIR := build
|
|
OUTPUT_DIR := output
|
|
INCLUDE_DIRS := include
|
|
SOURCE_DIRS := source
|
|
|
|
EXTRA_OUTPUT_FILES :=
|
|
|
|
LIBRARY_DIRS := $(DEVKITPRO)/citrus $(DEVKITPRO)/libctru
|
|
LIBRARIES := citrus ctru m
|
|
|
|
BUILD_FLAGS := -DVERSION_STRING="\"`git describe --tags --abbrev=0`\""
|
|
RUN_FLAGS :=
|
|
|
|
# 3DS CONFIGURATION #
|
|
|
|
DESCRIPTION := Open source CIA installer.
|
|
AUTHOR := Steveice10
|
|
PRODUCT_CODE := CTR-P-CFBI
|
|
UNIQUE_ID := 0x1930
|
|
|
|
SYSTEM_MODE := 64MB
|
|
SYSTEM_MODE_EXT := Legacy
|
|
|
|
ROMFS_DIR :=
|
|
BANNER_AUDIO := meta/audio.wav
|
|
BANNER_IMAGE := meta/banner.png
|
|
ICON := meta/icon.png
|
|
|
|
# INTERNAL #
|
|
|
|
include buildtools/make_base
|