diff options
author | Mattias Andrée <maandree@kth.se> | 2017-10-19 16:14:58 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-10-19 16:14:58 +0200 |
commit | b147896d43c04c79f66c0352eb53a99614d1a976 (patch) | |
tree | 0be1cf838463e6279f7074e003235298c5295a16 /Makefile | |
download | python-arg-b147896d43c04c79f66c0352eb53a99614d1a976.tar.gz python-arg-b147896d43c04c79f66c0352eb53a99614d1a976.tar.bz2 python-arg-b147896d43c04c79f66c0352eb53a99614d1a976.tar.xz |
First commit1.0
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..50ede37 --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +.POSIX: + +PREFIX = /usr/local + +PYTHON_MAJOR = $$(python --version 2>&1 | cut -d . -f 1 | cut -d ' ' -f 2) +PYTHON_MINOR = $$(python$(PYTHON_MAJOR) --version 2>&1 | cut -d . -f 2) + +all: + @true + +check: + python$(PYTHON_MAJOR) ./test.py + +install: + mkdir -p -- "$(DESTDIR)$(PREFIX)/lib/python$(PYTHON_MAJOR).$(PYTHON_MINOR)/site-packages" + cp -- arg.py "$(DESTDIR)$(PREFIX)/lib/python$(PYTHON_MAJOR).$(PYTHON_MINOR)/site-packages/" + +uninstall: + -rm -f -- "$(DESTDIR)$(PREFIX)/lib/python$(PYTHON_MAJOR).$(PYTHON_MINOR)/site-packages/arg.py" + +clean: + -rm -rf -- *.pyc *.pyo __pycache__ + +.SUFFIXES: + +.PHONY: all check install uninstall clean |