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/
|
2021-06-01 14:24:22 +02:00
|
|
|
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 ..
|
2021-03-21 17:40:06 -04:00
|
|
|
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
|
|
|
|