21 lines
549 B
Plaintext
21 lines
549 B
Plaintext
--- Makefile.orig 2018-09-13 18:19:05 UTC
|
|
+++ Makefile
|
|
@@ -6,7 +6,7 @@ dshell: rc initpy pydoc
|
|
|
|
rc:
|
|
# Generating .dshellrc and dshell files
|
|
- python $(PWD)/bin/generate-dshellrc.py $(PWD)
|
|
+ $(PYTHON_CMD) $(PWD)/bin/generate-dshellrc.py $(PWD)
|
|
chmod 755 $(PWD)/dshell
|
|
chmod 755 $(PWD)/dshell-decode
|
|
chmod 755 $(PWD)/bin/decode.py
|
|
@@ -15,7 +15,7 @@ rc:
|
|
initpy:
|
|
find $(PWD)/decoders -type d -not -path \*.svn\* -print -exec touch {}/__init__.py \;
|
|
|
|
-pydoc:
|
|
+pydoc: rc
|
|
(cd $(PWD)/doc && ./generate-doc.sh $(PWD) )
|
|
|
|
clean: clean_pyc
|