-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinstall
More file actions
34 lines (29 loc) · 705 Bytes
/
install
File metadata and controls
34 lines (29 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# My first script
echo "------------------------------------------------------"
echo ""
echo ""
echo ""
echo "Hit <return> to install Stringmol."
echo "(you'll see a lot of gobbledegook whilst it installs)"
read dummy
rm -qr exe
cd src
make clean
make all
mkdir -p ../exe
mv stringmol ../exe/stringmol
cd ..
echo "------------------------------------------------------"
echo ""
echo ""
echo ""
echo "..done!"
echo ""
echo "The executable should be listed below,"
echo "check that the date on the executable is a couple of seconds ago."
echo ""
ls -l exe/stringmol
echo ""
echo "If it isn't, then compilation has failed. Contact sjh436@gmail.com for help."
echo "Otherwise, you're done!"