Bring Makefile up to date with template.

This commit is contained in:
Steveice10 2017-01-05 18:20:42 -08:00
parent adbd41dabf
commit 1b97cff68c
5 changed files with 41 additions and 19 deletions

View File

@ -3,14 +3,10 @@
TARGET := 3DS TARGET := 3DS
LIBRARY := 0 LIBRARY := 0
ifeq ($(TARGET),3DS) ifeq ($(TARGET),$(filter $(TARGET),3DS WIIU))
ifeq ($(strip $(DEVKITPRO)),) ifeq ($(strip $(DEVKITPRO)),)
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro") $(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro")
endif endif
ifeq ($(strip $(DEVKITARM)),)
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
endif
endif endif
# COMMON CONFIGURATION # # COMMON CONFIGURATION #
@ -24,8 +20,8 @@ SOURCE_DIRS := source
EXTRA_OUTPUT_FILES := servefiles EXTRA_OUTPUT_FILES := servefiles
LIBRARY_DIRS := $(DEVKITPRO)/libctru LIBRARY_DIRS :=
LIBRARIES := citro3d ctru m LIBRARIES :=
BUILD_FLAGS := BUILD_FLAGS :=
RUN_FLAGS := RUN_FLAGS :=
@ -36,23 +32,49 @@ VERSION_MAJOR := $(word 1, $(VERSION_PARTS))
VERSION_MINOR := $(word 2, $(VERSION_PARTS)) VERSION_MINOR := $(word 2, $(VERSION_PARTS))
VERSION_MICRO := $(word 3, $(VERSION_PARTS)) VERSION_MICRO := $(word 3, $(VERSION_PARTS))
# 3DS/Wii U CONFIGURATION #
ifeq ($(TARGET),$(filter $(TARGET),3DS WIIU))
TITLE := $(NAME)
DESCRIPTION := Open source CIA installer.
AUTHOR := Steveice10
endif
# 3DS CONFIGURATION # # 3DS CONFIGURATION #
TITLE := $(NAME) ifeq ($(TARGET),3DS)
DESCRIPTION := Open source CIA installer. LIBRARY_DIRS += $(DEVKITPRO)/libctru
AUTHOR := Steveice10 LIBRARIES += citro3d ctru
PRODUCT_CODE := CTR-P-CFBI
UNIQUE_ID := 0xF8001
SYSTEM_MODE := 64MB PRODUCT_CODE := CTR-P-CFBI
SYSTEM_MODE_EXT := Legacy UNIQUE_ID := 0xF8001
ICON_FLAGS := --flags visible,ratingrequired,recordusage --cero 153 --esrb 153 --usk 153 --pegigen 153 --pegiptr 153 --pegibbfc 153 --cob 153 --grb 153 --cgsrr 153 CATEGORY := Application
USE_ON_SD := true
ROMFS_DIR := romfs MEMORY_TYPE := Application
BANNER_AUDIO := meta/audio.wav SYSTEM_MODE := 64MB
BANNER_IMAGE := meta/banner.cgfx SYSTEM_MODE_EXT := Legacy
ICON := meta/icon.png CPU_SPEED := 268MHz
ENABLE_L2_CACHE := true
ICON_FLAGS := --flags visible,ratingrequired,recordusage --cero 153 --esrb 153 --usk 153 --pegigen 153 --pegiptr 153 --pegibbfc 153 --cob 153 --grb 153 --cgsrr 153
ROMFS_DIR := romfs
BANNER_AUDIO := meta/audio_3ds.wav
BANNER_IMAGE := meta/banner_3ds.cgfx
ICON := meta/icon_3ds.png
endif
# Wii U CONFIGURATION #
ifeq ($(TARGET),WIIU)
LIBRARY_DIRS +=
LIBRARIES +=
LONG_DESCRIPTION := Open source CIA installer.
ICON := meta/icon_wiiu.png
endif
# INTERNAL # # INTERNAL #

View File

Before

Width:  |  Height:  |  Size: 328 B

After

Width:  |  Height:  |  Size: 328 B

BIN
meta/icon_wiiu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 359 B