summaryrefslogtreecommitdiffstats
path: root/commands/account/Makefile
diff options
context:
space:
mode:
authorJan Safranek <jsafrane@redhat.com>2014-02-19 10:23:09 +0100
committerJan Safranek <jsafrane@redhat.com>2014-02-20 15:57:04 +0100
commite22c75227868ca64b4bea7cb788c33385e1e7277 (patch)
treed5b6f60e529bdcaeedbc810b3a8f45910f3045b4 /commands/account/Makefile
parentafcbee2498571656b2b786cb77c38376daf15023 (diff)
downloadopenlmi-scripts-e22c75227868ca64b4bea7cb788c33385e1e7277.tar.gz
openlmi-scripts-e22c75227868ca64b4bea7cb788c33385e1e7277.tar.xz
openlmi-scripts-e22c75227868ca64b4bea7cb788c33385e1e7277.zip
Add account script documentation.
Diffstat (limited to 'commands/account/Makefile')
-rw-r--r--commands/account/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/commands/account/Makefile b/commands/account/Makefile
new file mode 100644
index 0000000..8c02686
--- /dev/null
+++ b/commands/account/Makefile
@@ -0,0 +1,19 @@
+PYTHONPATH?=$(HOME)/workspace/python_sandbox
+DEVELOPDIR?=$(shell echo $(PYTHONPATH) | cut -d : -f 1)
+
+.PHONY: sdist develop upload_docs clean all
+
+all: sdist
+
+sdist:
+ python setup.py sdist
+
+develop:
+ python setup.py develop --install-dir=$(DEVELOPDIR)
+
+upload_docs:
+ make -C doc html
+ python setup.py upload_docs
+
+clean:
+ make -C doc clean