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

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

[elpa] master e2d3320 24/26: Add `uncompile' Makefile task.


From: Jackson Ray Hamilton
Subject: [elpa] master e2d3320 24/26: Add `uncompile' Makefile task.
Date: Sat, 14 Feb 2015 08:19:41 +0000

branch: master
commit e2d33201687a37a834ae6dee8031f5cdf0123603
Author: Jackson Ray Hamilton <address@hidden>
Commit: Jackson Ray Hamilton <address@hidden>

    Add `uncompile' Makefile task.
---
 Makefile |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 2d37cd6..c265382 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 EMACS = emacs
 DEPENDENCIES = libraries/ert-async.el libraries/js2-mode.el
 
-all: clean compile test
+all: uncompile compile test
 
 bench: ${DEPENDENCIES}
        ${EMACS} -Q \
@@ -17,8 +17,11 @@ compile: ${DEPENDENCIES}
        -L libraries \
        -f batch-byte-compile *.el libraries/*.el
 
-clean:
-       rm -f *.elc libraries/*.elc ${DEPENDENCIES}
+uncompile:
+       rm -f *.elc libraries/*.elc
+
+clean: uncompile
+       rm -f ${DEPENDENCIES}
 
 ${DEPENDENCIES}:
        ${EMACS} -Q -batch \
@@ -34,4 +37,4 @@ test: ${DEPENDENCIES}
        -l test/context-coloring-test.el \
        -f ert-run-tests-batch-and-exit
 
-.PHONY: all bench compile clean test
+.PHONY: all bench compile uncompile clean test



reply via email to

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