pymacs.rcp: support building without make

For Windows users.

Fixes #2381.
This commit is contained in:
Noam Postavsky 2016-05-12 05:12:41 -04:00
parent ef436e5abf
commit 0cd315b04f

View File

@ -11,4 +11,11 @@
(autoload 'pymacs-exec "pymacs" nil t)
(autoload 'pymacs-call "pymacs")
(autoload 'pymacs-apply "pymacs"))
:build (("make")))
:build (("make"))
;; Assume windows lacks make, emulate what make does, as
;; suggested in manual (although we're emulating "make", not
;; "make install").
:build/windows-nt
(("python" "pppp" "-C" "ppppconfig.py"
"Pymacs.py.in" "pppp.rst.in" "pymacs.el.in" "pymacs.rst.in" "contrib" "tests")
("python" "setup.py" "--quiet" "build")))