mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-10-31 19:36:16 +00:00
20 lines
569 B
Bash
Executable File
20 lines
569 B
Bash
Executable File
#!/bin/sh
|
|
mkdir -p app/src/main/assets/sounds
|
|
cp ../sounds/* app/src/main/assets/sounds/
|
|
cp ../honeycomb-rules-*.txt app/src/main/assets/
|
|
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..."
|
|
LAST_PWD=$(pwd); cd ..
|
|
make autohdr.h
|
|
cd $LAST_PWD
|
|
fi
|
|
|