Make it possible to build a dist and supply the HBC metadata files.

Someone: Please make a nicer icon!
This commit is contained in:
simon.kagstrom 2009-05-10 20:12:31 +00:00
parent c986720ccb
commit b46f080806
4 changed files with 31 additions and 0 deletions

View File

@ -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 $@

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

9
meta.xml Normal file
View 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>

5
uaerc.wii Normal file
View File

@ -0,0 +1,5 @@
kickstart_rom_file=/uae/roms/kick.rom
floppy0=/uae/floppies/budbrain.adz
cpu_speed=real
cpu_type=68000
sound_frequency=32000