branch: elpa/lua-mode
commit 4b27305c6fc6a7cf1f764e7a42255a8e66b5c3be
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>
Add safe default target to makefile
---
Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/Makefile b/Makefile
index e73ef85..b1562d8 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,9 @@
VERSION=$(shell grep "^;; Version:" lua-mode.el | cut -f 2)
DISTFILE = lua-mode-$(VERSION).zip
+default:
+ @echo version is $(VERSION)
+
dist:
rm -f $(DISTFILE) && \
zip $(DISTFILE) -r . -x ".git/*" "*.gitignore" "*.zip"