branch: externals/bicep-ts-mode
commit 946eb74f55ceaf1902497b6c2f5917990ba5bb0b
Author: Jostein Kjønigsen <jost...@kjonigsen.net>
Commit: Jostein Kjønigsen <jost...@kjonigsen.net>

    Add makefile to build using Cask.
---
 Cask     |  4 ++++
 makefile | 17 +++++++++++++++++
 2 files changed, 21 insertions(+)

diff --git a/Cask b/Cask
new file mode 100644
index 0000000000..0562a45e27
--- /dev/null
+++ b/Cask
@@ -0,0 +1,4 @@
+(source gnu)
+
+(files "*.el")
+(package-file "bicep-ts-mode.el")
\ No newline at end of file
diff --git a/makefile b/makefile
new file mode 100644
index 0000000000..c361851e2c
--- /dev/null
+++ b/makefile
@@ -0,0 +1,17 @@
+EMACS=$(shell which emacs) -Q -batch -L .
+WORKDIR=/tmp/bicep-ts-mode
+export HOME := $(WORKDIR)
+
+# all: test build
+all: build
+
+build:
+       cask build
+
+#test: build
+#      mkdir -p $(WORKDIR)
+#      + $(EMACS) -l bmx-mode-tests.el -f ert-run-tests-batch-and-exit
+
+clean:
+       rm -rf *.elc
+       rm -rf $(WORKDIR)

Reply via email to