forked from lorenzo2897/c-mips-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrmake.sh
executable file
·83 lines (63 loc) · 1.27 KB
/
rmake.sh
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# remote make with flex, bison, g++
# ###
USEPROXY=0
function scpr {
if [ $USEPROXY == 1 ]; then
scp -o "ProxyCommand=nc -X 5 -x 192.168.43.1:1337 %h %p" $@
else
scp $@
fi
}
function sshr {
if [ $USEPROXY == 1 ]; then
ssh -o "ProxyCommand=nc -X 5 -x 192.168.43.1:1337 %h %p" $@
else
ssh $@
fi
}
# #####################
function putc {
scpr -r src/ silvestrix.org:lscc/
}
function makec {
sshr silvestrix.org "cd lscc; make clean; make"
}
function getc {
scpr -r silvestrix.org:lscc/bin/ linux/
}
# #####################
if [ -z $1 ]; then
make clean
# copy files to remote server
echo -e "\033[0;31mput: Copying files to remote server\033[0m"
putc
# make
echo -e "\033[0;31mmake: Making files\033[0m"
makec
# copy back
echo -e "\033[0;31mget: Copying back\033[0m"
getc
echo -e "\033[0;31mDone.\033[0m"
exit
fi
# #####################
if [ $1 == 'put' ]; then
echo -e "\033[0;31mput: Copying files to remote server\033[0m"
putc
exit
fi
if [ $1 == 'putm' ]; then
echo -e "\033[0;31mputm: Copying new makefile to remote server\033[0m"
scpr makefile silvestrix.org:lscc/
exit
fi
if [ $1 == 'make' ]; then
echo -e "\033[0;31mmake: Making files\033[0m"
makec
exit
fi
if [ $1 == 'get' ]; then
echo -e "\033[0;31mget: Copying back\033[0m"
getc
exit
fi