1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-05 13:40:10 +00:00

20 lines
569 B
Bash
Raw Normal View History

2017-03-23 13:54:10 +01:00
#!/bin/sh
2018-06-07 19:51:14 +02:00
mkdir -p app/src/main/assets/sounds
2017-03-23 13:54:10 +01:00
cp ../sounds/* app/src/main/assets/sounds/
cp ../honeycomb-rules-*.txt app/src/main/assets/
2018-06-07 19:51:14 +02:00
mkdir -p app/src/main/res/raw/
2018-06-15 00:03:05 +02:00
2017-03-31 22:10:05 +02:00
#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
2018-06-15 00:03:05 +02:00
2020-10-05 22:15:38 +03:00
# 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..."
2020-10-08 22:21:34 +03:00
LAST_PWD=$(pwd); cd ..
make autohdr.h
2020-10-08 22:21:34 +03:00
cd $LAST_PWD
2018-06-15 00:03:05 +02:00
fi
2020-10-05 22:15:38 +03:00