emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/ssh-deploy 31cb94d 060/133: Added compile command to ma


From: Stefan Monnier
Subject: [elpa] externals/ssh-deploy 31cb94d 060/133: Added compile command to makefile and added a .gitignore file
Date: Sat, 27 Mar 2021 14:48:44 -0400 (EDT)

branch: externals/ssh-deploy
commit 31cb94d0dbe722c656b51b4b9c9cfe0142ef893f
Author: Christian Johansson <christian@cvj.se>
Commit: Christian Johansson <christian@cvj.se>

    Added compile command to makefile and added a .gitignore file
---
 .gitignore |  1 +
 Makefile   | 10 ++++++++++
 2 files changed, 11 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..016d3b1
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.elc
\ No newline at end of file
diff --git a/Makefile b/Makefile
index 1165d6c..b961126 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,17 @@ endif
 
 EMACS_CMD := $(EMACS) -Q -batch -L .
 
+EL  := ssh-deploy-diff-mode.el ssh-deploy-test.el ssh-deploy.el
+ELC := $(EL:.el=.elc)
+
 .PHONY: tests
 tests:
        $(EMACS_CMD) -l ssh-deploy-test.el
 
+.PHONY: clean
+clean:
+       rm -f $(ELC)
+
+.PHONY: compile
+compile:
+       $(EMACS_CMD) -f batch-byte-compile $(EL)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]