summaryrefslogtreecommitdiff
path: root/noncore/apps/qashmoney/make_arm
blob: 4d0dc1cd8baf12d020571e1ca70067ec36bab074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Use this script to automatically make the arm version
# of QashMoney.  The arm.sh file must be in this folder
# for it to work

# clean the directory then remove the Makefile
echo "Cleaning the directory and removing the current Makefile..."
if [ -e Makefile ]
then
  make clean
  rm Makefile
fi

# set the environment variables for the arm environment
echo "Setting environment variables..."
source arm.sh

# Make the new Makefile
echo "Making the new Makefile..."
tmake -o Makefile qashmoney.pro

# Make the program
echo "Making the program..."
make