mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
Fixed the build on Unix machines
This commit is contained in:
parent
6e8489e335
commit
07d2e8582e
@ -3,7 +3,7 @@
|
|||||||
<name> USB Loader GX</name>
|
<name> USB Loader GX</name>
|
||||||
<coder>USB Loader GX Team</coder>
|
<coder>USB Loader GX Team</coder>
|
||||||
<version>1.0 r836</version>
|
<version>1.0 r836</version>
|
||||||
<release_date>200911180000</release_date>
|
<release_date>200910150000</release_date>
|
||||||
<short_description>Loads games from USB-devices</short_description>
|
<short_description>Loads games from USB-devices</short_description>
|
||||||
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
|
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
|
||||||
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.
|
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.
|
||||||
|
6
Makefile
6
Makefile
@ -105,14 +105,14 @@ export OUTPUT := $(CURDIR)/$(TARGET)
|
|||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
$(BUILD):
|
$(BUILD):
|
||||||
@[ -d $@ ] || mkdir -p $@
|
@[ -d $@ ] || mkdir -p $@
|
||||||
@[[ -f source/buildtype.h && ! -s source/buildtype.h ]] || cp /dev/null source/buildtype.h
|
@/bin/bash ./buildtype.sh
|
||||||
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
# @echo debug...
|
# @echo debug...
|
||||||
# start geckoreader.exe
|
# start geckoreader.exe
|
||||||
|
|
||||||
channel:
|
channel:
|
||||||
@[ -d build ] || mkdir -p build
|
@[ -d build ] || mkdir -p build
|
||||||
@[ -s source/buildtype.h ] || echo '#define FULLCHANNEL' > source/buildtype.h
|
@/bin/bash ./buildtype.sh FULLCHANNEL
|
||||||
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
|
|
||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
@ -123,7 +123,7 @@ lang:
|
|||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
all:
|
all:
|
||||||
@[ -d build ] || mkdir -p build
|
@[ -d build ] || mkdir -p build
|
||||||
@[[ -f source/buildtype.h && ! -s source/buildtype.h ]] || cp /dev/null source/buildtype.h
|
@shell bash ./buildtype.sh
|
||||||
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
||||||
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile language
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile language
|
||||||
|
|
||||||
|
14
buildtype.sh
Executable file
14
buildtype.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ ! -z "$1" ];
|
||||||
|
then
|
||||||
|
if [ ! -s source/buildtype.h ];
|
||||||
|
then
|
||||||
|
echo "#define $1" > source/buildtype.h
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [[ ! -f source/buildtype.h || -s source/buildtype.h ]];
|
||||||
|
then
|
||||||
|
cp /dev/null source/buildtype.h
|
||||||
|
fi
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user