File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
DESTDIR =
2
2
3
3
# Find library installation path
4
- INSTALL_PATH = $(patsubst Location:,,$(shell pip show PSL | grep Location) )
4
+ INSTALL_PATH = $(patsubst Location:,,$(shell python3 -m pip show PSL | grep Location) )
5
5
INSTALL_PATH_LEN = $(shell echo $(INSTALL_PATH ) | wc -c)
6
6
7
7
all :
8
8
python3 setup.py build
9
9
10
+ fullclean :
11
+ # Removes every PSL instance in system. Be careful and check if the following list got all files inside a python folder or related to PSLab
12
+ find /usr/* -name " PSL*" | xargs rm -rf
13
+ find /usr/* -name " pslab*" | xargs rm -rf
14
+ find /opt/* -name " pslab-*" | xargs rm -rf
15
+ rm -rf /usr/bin/Experiments /usr/local/bin/Experiments
16
+
10
17
clean :
11
18
# Remove build files
12
19
@rm -rf docs/_*
You can’t perform that action at this time.
0 commit comments