1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-14 01:16:50 +00:00
hyperrogue/hyperroid/copy.sh
2020-10-05 22:15:38 +03:00

19 lines
517 B
Bash
Executable File

#!/bin/sh
mkdir -p app/src/main/assets/sounds
cp ../sounds/* app/src/main/assets/sounds/
mkdir -p app/src/main/res/raw/
#for x in caves crossroads desert graveyard hell icyland jungle laboratory mirror rlyeh
#do cp ../music/hr3-$x.ogg app/src/main/res/raw/$x.ogg
#done
# make sure autohdr.h is generated
# language-data.cpp is a make dependency of autohdr.h, so it's generated as well
if [ ! -f ../autohdr.h ]; then
echo "generating autohdr.h..."
pushd ..
make -f Makefile.simple autohdr.h
popd
fi