makefile: add
This commit is contained in:
parent
cc992227fc
commit
184085c20d
35
Makefile
Normal file
35
Makefile
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# TODO: rename binary to euscan-ng
|
||||||
|
BIN = euscan
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY:
|
||||||
|
clean
|
||||||
|
install-user
|
||||||
|
install-user-test
|
||||||
|
install-user-web
|
||||||
|
install
|
||||||
|
uninstall distclean
|
||||||
|
|
||||||
|
|
||||||
|
clean:
|
||||||
|
sh clean.sh
|
||||||
|
|
||||||
|
|
||||||
|
install-user:
|
||||||
|
python setup.py -v install --user
|
||||||
|
|
||||||
|
install-user-test:
|
||||||
|
python setup.py -v install --user test
|
||||||
|
|
||||||
|
install-user-web:
|
||||||
|
python setup.py -v install --user web
|
||||||
|
|
||||||
|
install: install-user
|
||||||
|
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
pip uninstall -v -y $(BIN)
|
||||||
|
|
||||||
|
|
||||||
|
distclean: uninstall
|
||||||
|
distclean: clean
|
Loading…
Reference in New Issue
Block a user