mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-15 16:05:10 +01:00
d90a6f0429
*updated libntfs-wii to version 2012.1.15 *updated libext2fs to e2fsprogs 1.42 *updated libfat to R4883
131 lines
4.5 KiB
Makefile
131 lines
4.5 KiB
Makefile
#---------------------------------------------------------------------------------
|
|
# Clear the implicit built in rules
|
|
#---------------------------------------------------------------------------------
|
|
.SUFFIXES:
|
|
#---------------------------------------------------------------------------------
|
|
ifeq ($(strip $(DEVKITPPC)),)
|
|
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),wii)
|
|
include $(DEVKITPPC)/wii_rules
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),cube)
|
|
include $(DEVKITPPC)/gamecube_rules
|
|
endif
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# BUILD is the directory where object files & intermediate files will be placed
|
|
# SOURCES is a list of directories containing source code
|
|
# INCLUDES is a list of directories containing extra header files
|
|
#---------------------------------------------------------------------------------
|
|
BUILD ?= wii_release
|
|
SOURCES := .
|
|
INCLUDES := ../include
|
|
LIBDIR := ../lib
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# options for code generation
|
|
#---------------------------------------------------------------------------------
|
|
CFLAGS = -O2 -Wall -Wno-unused $(MACHDEP) $(INCLUDE) -DGEKKO -DWORDS_BIGENDIAN
|
|
CXXFLAGS = $(CFLAGS)
|
|
ASFLAGS := -g
|
|
export EXT2BIN := $(LIBDIR)/$(PLATFORM)/libext2fs.a
|
|
|
|
ifeq ($(BUILD),cube_debug)
|
|
CFLAGS += -DDEBUG_GEKKO
|
|
CXXFLAGS += -DDEBUG_GEKKO
|
|
endif
|
|
ifeq ($(BUILD),wii_debug)
|
|
CFLAGS += -DDEBUG_GEKKO
|
|
CXXFLAGS += -DDEBUG_GEKKO
|
|
endif
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# any extra libraries we wish to link with the project
|
|
#---------------------------------------------------------------------------------
|
|
LIBS :=
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# list of directories containing libraries, this must be the top level containing
|
|
# include and lib
|
|
#---------------------------------------------------------------------------------
|
|
LIBDIRS :=
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# no real need to edit anything past this point unless you need to add additional
|
|
# rules for different file extensions
|
|
#---------------------------------------------------------------------------------
|
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export DEPSDIR := $(CURDIR)/$(BUILD)
|
|
|
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
|
|
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
|
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
|
|
|
|
|
export OFILES := $(addsuffix .o,$(BINFILES)) \
|
|
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
|
|
|
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
|
-I$(CURDIR)/$(BUILD) \
|
|
-I$(LIBOGC_INC)
|
|
|
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
|
-L$(LIBOGC_LIB)
|
|
|
|
.PHONY: $(BUILD) clean
|
|
|
|
#---------------------------------------------------------------------------------
|
|
$(BUILD):
|
|
@[ -d $@ ] || mkdir -p $@
|
|
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
|
|
|
#---------------------------------------------------------------------------------
|
|
clean:
|
|
@echo clean ...
|
|
@rm -fr wii_debug wii_release cube_debug cube_release $(LIBDIR)
|
|
|
|
all: $(EXT2BIN)
|
|
|
|
install:
|
|
cp ../include/ext2.h $(DEVKITPRO)/libogc/include
|
|
cp ../lib/wii/libext2fs.a $(DEVKITPRO)/libogc/lib/wii
|
|
cp ../lib/cube/libext2fs.a $(DEVKITPRO)/libogc/lib/cube
|
|
|
|
wii-install:
|
|
cp ../include/ext2.h $(DEVKITPRO)/libogc/include
|
|
cp ../lib/wii/libext2fs.a $(DEVKITPRO)/libogc/lib/wii
|
|
|
|
#---------------------------------------------------------------------------------
|
|
else
|
|
|
|
DEPENDS := $(OFILES:.o=.d)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# main targets
|
|
#---------------------------------------------------------------------------------
|
|
$(EXT2BIN): $(OFILES) $(LIBDIR)/$(PLATFORM)
|
|
@rm -f "../$(EXT2BIN)"
|
|
@$(AR) rcs "../$(EXT2BIN)" $(OFILES)
|
|
@echo built ... $(notdir $@)
|
|
|
|
$(LIBDIR)/$(PLATFORM):
|
|
mkdir -p ../$(LIBDIR)/$(PLATFORM)
|
|
|
|
-include $(DEPENDS)
|
|
|
|
#---------------------------------------------------------------------------------------
|
|
endif
|
|
#---------------------------------------------------------------------------------------
|
|
|