mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-22 02:29:17 +01:00
Make it possible to build a dist and supply the HBC metadata files.
Someone: Please make a nicer icon!
This commit is contained in:
parent
c986720ccb
commit
b46f080806
17
Makefile.wii
17
Makefile.wii
@ -92,6 +92,23 @@ CFLAGS := $(COMMON_FLAGS) $(INCLUDES) $(DEFINES)
|
||||
# Test link flags.
|
||||
LDFLAGS := $(COMMON_FLAGS) -L$(LIB_DIR) -L$(DEVKITPRO)/libogc/lib/wii -lz -lSDL_ttf -lSDL -lfreetype -lfat -lwiiuse -lbte -logc -lm
|
||||
|
||||
dist: uae.dol
|
||||
|
||||
dist: uae.dol
|
||||
install -d $@/apps/uae
|
||||
install -d $@/uae
|
||||
install -d $@/uae/floppies
|
||||
install -d $@/uae/roms
|
||||
install -d $@/uae/harddisks
|
||||
install -d $@/uae/saves
|
||||
cp $< $@/apps/uae/boot.dol
|
||||
cp meta.xml $@/apps/uae/
|
||||
cp icon.png $@/apps/uae/
|
||||
cp FreeMono.ttf $@/apps/uae/
|
||||
cp Smaller.ttf $@/apps/uae/
|
||||
cp uaerc.wii $@/uae/uaerc
|
||||
cd $@ && tar -czf ../uae-bin.tar.gz *
|
||||
|
||||
# How to link an ELF.
|
||||
uae.elf: src/machdep src/target.h src/sysconfig.h $(OBJS)
|
||||
@echo Linking $@
|
||||
|
9
meta.xml
Normal file
9
meta.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<app version="1">
|
||||
<name>UAE</name>
|
||||
<coder>Simon Kagstrom</coder>
|
||||
<version>1</version>
|
||||
<release_date>20090513</release_date>
|
||||
<short_description>Amiga emulator</short_description>
|
||||
<long_description>UAE is an Amiga emulator written by Bernd Schmidt et al, see http://amigaemulator.org. The port to Wii was done by Simon Kagstrom.</long_description>
|
||||
</app>
|
Loading…
Reference in New Issue
Block a user