File: lipuninstall

package info (click to toggle)
liblip 1.2-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,784 kB
  • ctags: 828
  • sloc: sh: 7,454; cpp: 4,026; ansic: 1,117; makefile: 106
file content (16 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

#run make uninstall and then clean
if [ -f Makefile ]
then 	echo "Uninstalling liblip"
	make uninstall
	make clean
else	echo "makefile not found... might have to uninstall manually!"
fi

# remove the document directory.

DOCS_DIR=`cat docs_dir`

echo "rm -rf $DOCS_DIR"
rm -rf $DOCS_DIR