mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 01:09:16 +01:00
change Makefile to reduce svn-conflicts
make updated always the lang-files now: make -> builds only the boot.dol make all -> builds the boot.dol and updated the lang-files make lang -> only updated the lang-files
This commit is contained in:
parent
1fe96748b7
commit
d9cc4ecd83
16
Makefile
16
Makefile
@ -96,13 +96,24 @@ export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
|||||||
-L$(LIBOGC_LIB)
|
-L$(LIBOGC_LIB)
|
||||||
|
|
||||||
export OUTPUT := $(CURDIR)/$(TARGET)
|
export OUTPUT := $(CURDIR)/$(TARGET)
|
||||||
.PHONY: $(BUILD) clean
|
.PHONY: $(BUILD) lang all clean
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
$(BUILD):
|
$(BUILD):
|
||||||
@[ -d $@ ] || mkdir -p $@
|
@[ -d $@ ] || mkdir -p $@
|
||||||
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
lang:
|
||||||
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile language
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------------
|
||||||
|
all:
|
||||||
|
@[ -d $@ ] || mkdir -p $@
|
||||||
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile language
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
clean:
|
clean:
|
||||||
@echo clean ...
|
@echo clean ...
|
||||||
@ -133,8 +144,9 @@ DEPENDS := $(OFILES:.o=.d)
|
|||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
# main targets
|
# main targets
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
$(OUTPUT).dol: $(OUTPUT).elf language
|
$(OUTPUT).dol: $(OUTPUT).elf
|
||||||
$(OUTPUT).elf: $(OFILES)
|
$(OUTPUT).elf: $(OFILES)
|
||||||
|
|
||||||
language: $(wildcard $(PROJECTDIR)/Languages/*.lang)
|
language: $(wildcard $(PROJECTDIR)/Languages/*.lang)
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
# This rule links in binary data with .ttf, .png, and .mp3 extensions
|
# This rule links in binary data with .ttf, .png, and .mp3 extensions
|
||||||
|
@ -193,6 +193,9 @@ u32 wbfs_rm_disc(wbfs_t*p, u8* discid);
|
|||||||
/*! rename a game */
|
/*! rename a game */
|
||||||
u32 wbfs_ren_disc(wbfs_t*p, u8* discid, u8* newname);
|
u32 wbfs_ren_disc(wbfs_t*p, u8* discid, u8* newname);
|
||||||
|
|
||||||
|
/* change ID of a game*/
|
||||||
|
u32 wbfs_rID_disc(wbfs_t*p, u8* discid, u8* newID);
|
||||||
|
|
||||||
/*! trim the file-system to its minimum size
|
/*! trim the file-system to its minimum size
|
||||||
This allows to use wbfs as a wiidisc container
|
This allows to use wbfs as a wiidisc container
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user