Skip to content

Commit 1157050

Browse files
committed
Added make install/uninstall target for provdb_python (installs to ~/.local)
1 parent 394fab8 commit 1157050

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Makefile.am

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
SUBDIRS = include src app test sphinx 3rdparty scripts sim
22
nobase_include_HEADERS = chimbuko_config.h
33

4+
install-provdb-python:
5+
python3 -m pip install --user $(top_srcdir)/scripts/provdb_python/
6+
#python3 -m pip install --prefix $(prefix) $(top_srcdir)/scripts/provdb_python/
7+
8+
uninstall-provdb-python:
9+
python3 -m pip uninstall -y provdb-python
10+
#Below are needed if installing into prefixc becase pip doesn't allow uninstall of packages installed with --prefix?????!?!? (I HATE PYTHON)
11+
# rm -rf $(prefix)/lib/python3.6
12+
# rm $(prefix)/bin/provdb-python

0 commit comments

Comments
 (0)