mirror of
https://github.com/rvtr/ctr_firmware.git
synced 2025-10-31 07:51:08 -04:00
FATFSフォーマッタおよびFATFSサンプル追加 git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_firmware@257 b871894f-2f95-9b40-918c-086798483c85
65 lines
2.6 KiB
Makefile
65 lines
2.6 KiB
Makefile
#! make -f
|
|
#----------------------------------------------------------------------------
|
|
# Project: CtrBrom - libraries - mi
|
|
# File: Makefile
|
|
#
|
|
# Copyright 2008-2009 Nintendo. All rights reserved.
|
|
#
|
|
# These coded instructions, statements, and computer programs contain
|
|
# proprietary information of Nintendo of America Inc. and/or Nintendo
|
|
# Company Ltd., and are protected by Federal copyright law. They may
|
|
# not be disclosed to third parties or copied or duplicated in any form,
|
|
# in whole or in part, without the prior written consent of Nintendo.
|
|
#
|
|
# $Date:: $
|
|
# $Rev$
|
|
# $Author$
|
|
#----------------------------------------------------------------------------
|
|
|
|
SUBDIRS =
|
|
SUBMAKES =
|
|
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
# build ARM & THUMB libraries
|
|
FIRM_CODEGEN_ALL ?= TRUE
|
|
|
|
#-------------------------------------------
|
|
#BROM_INCDIR = $(CTRBROM_ROOT)/include $(CTRBROM_ROOT)/build/libraries/fatfs/common/include ../common/include
|
|
#GINCLUDES = $(CTRBROM_ROOT)/include $(CTRFIRM_ROOT)/include $(CTRALL_ROOT)/include $(CTRBROM_ROOT)/build/libraries/fatfs/common/include ../common/include
|
|
INCDIR = $(BROM_ROOT)/include $(FIRM_ROOT)/include $(FIRM_ROOT)/build/libraries/fatfs/common/include ../common/include
|
|
#INCDIR = $(CTRBROM_ROOT)/include ../common/include
|
|
SRCDIR = ../common/src
|
|
SRCS = \
|
|
apistat.c prfsapi.c rtlowl.c apickdsk.c apiwrite.c \
|
|
prfscore.c rtnvfat.c apicnfig.c \
|
|
prfsnvio.c rttermin.c apideltr.c appdemo.c prfstest.c \
|
|
rtutbyte.c apienum.c csascii.c rtutil.c \
|
|
apifilio.c csjis.c rtdevio.c rtvfat.c apifilmv.c csjistab.c \
|
|
rtdrobj.c apifrmat.c csstrtab.c rtfat16.c apigetwd.c \
|
|
rtfat32.c apigfrst.c csunicod.c rtfatxx.c apiinfo.c \
|
|
portio.c apiinit.c portkern.c apifastmv.c \
|
|
apimkdir.c apirealt.c \
|
|
prapipro.c apiregrs.c prblock.c apisetwd.c \
|
|
rtkernfn.c \
|
|
drdefault.c drfile.c attach.c \
|
|
rtfs_twl_append.c rtfs_twl_vfat_append.c \
|
|
drnand.c \
|
|
#------------------------------------------------
|
|
|
|
TARGET_LIB = libfatfs$(FIRM_LIBSUFFIX).a
|
|
|
|
include $(CTRFIRM_ROOT)/build/buildtools/commondefs
|
|
|
|
INSTALL_TARGETS = $(TARGETS)
|
|
INSTALL_DIR = $(FIRM_INSTALL_LIBDIR)
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
do-build: $(TARGETS)
|
|
|
|
include $(CTRFIRM_ROOT)/build/buildtools/modulerules
|
|
|
|
#===== End of Makefile =====
|