summaryrefslogtreecommitdiff
path: root/support/emacs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'support/emacs/Makefile')
-rw-r--r--support/emacs/Makefile50
1 files changed, 0 insertions, 50 deletions
diff --git a/support/emacs/Makefile b/support/emacs/Makefile
deleted file mode 100644
index ab1b3a2af3..0000000000
--- a/support/emacs/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-############################################################-*-Makefile-*-####
-# Makefile for compiling the major mode of Emacs
-##############################################################################
-# $Id$
-
-##############################################################################
-# Configuration
-
-ROOT = .
-
-SOURCE_DIR = $(ROOT)
-
-##############################################################################
-# Variables
-
-# Emacs Lisp
-ELISP_COMMAND ?= emacs
-ELISP_OPTIONS += -batch -no-site-file
-ELISP_OPTIONS += -eval '(setq byte-compile-emacs19-compatibility t)'
-ELISP_OPTIONS += -f batch-byte-compile
-
-ELISP_FILES += inferior-scala-mode
-ELISP_FILES += scala-mode-auto
-ELISP_FILES += scala-mode
-ELISP_SOURCES += $(ELISP_FILES:%=$(SOURCE_DIR)/%.el)
-
-##############################################################################
-
-RM ?= rm -f
-TOUCH ?= touch
-
-##############################################################################
-# Commands
-
-all: .latest-build
-
-clean:
- $(RM) *.elc .latest-*
-
-.PHONY: all
-.PHONY: clean
-
-##############################################################################
-# Rules
-
-.latest-build: $(ELISP_SOURCES)
- $(ELISP_COMMAND) $(ELISP_OPTIONS) $(ELISP_SOURCES)
- @$(TOUCH) $@
-
-##############################################################################