Added make install and uninstall
git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@123 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
parent
39a27aef71
commit
a2b9c11697
@ -68,4 +68,5 @@
|
||||
0.10
|
||||
- In optimizer, added a function that tokenizes an expression
|
||||
- Document about complexity of operations
|
||||
- Bug: error in update operation, it changed the original tuple, so also other relations using the same tuple would change. Now it copies it.
|
||||
- Bug: error in update operation, it changed the original tuple, so also other relations using the same tuple would change. Now it copies it.
|
||||
- Added make install and uninstall
|
14
Makefile
14
Makefile
@ -1,6 +1,20 @@
|
||||
default:
|
||||
echo "sorry, no default action"
|
||||
|
||||
uninstall:
|
||||
rm -rf /opt/relational
|
||||
rm -f /usr/local/bin/relational
|
||||
|
||||
install:
|
||||
mkdir /opt/relational
|
||||
cp -R relational relational_gui /opt/relational/
|
||||
cp relational_gui.py /opt/relational
|
||||
chmod -R 555 /opt/relational/
|
||||
echo "#!/bin/bash" > /usr/local/bin/relational
|
||||
echo "/opt/relational/relational_gui.py" >> /usr/local/bin/relational
|
||||
chmod 555 /usr/local/bin/relational
|
||||
|
||||
|
||||
source: clean
|
||||
rm -rf /tmp/relational/
|
||||
mkdir /tmp/relational/
|
||||
|
Loading…
Reference in New Issue
Block a user