From fcf7adaa317ea20846f9b7f8baf18871176e6526 Mon Sep 17 00:00:00 2001 From: Kai Tetzlaff Date: Mon, 5 Nov 2012 07:48:53 +0100 Subject: [PATCH] adding yaml-mode --- .hgignore | 1 + Makefile | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/.hgignore b/.hgignore index 5971471..b349f08 100644 --- a/.hgignore +++ b/.hgignore @@ -43,6 +43,7 @@ emacswiki/ w3/ use-package/ dvc/ +yaml-mode/ doxymacs/Makefile doxymacs/Makefile.in diff --git a/Makefile b/Makefile index e9adc6a..c40bacd 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,9 @@ post_init_cmd-emacswiki = cd $(@D) && git checkout -b master origin/master GIT_DIRS += use-package URL-use-package := https://github.com/jwiegley/use-package.git +GIT_DIRS += yaml-mode +URL-yaml-mode := https://github.com/yoshiki/yaml-mode.git + #GIT_DIRS += apel URL-apel := http://github.com/wanderlust/apel.git @@ -265,6 +268,16 @@ w3: w3/Makefile $(MAKE) -C $(DIR-$@) install +# ######################################################################### +# yaml-mode +# ######################################################################### +.PHONY: yaml-mode +yaml-mode: + $(MAKE) -C $(DIR-$@) install\ + EMACS=$(EMACS)\ + INSTALLLIBDIR=$(LISP_DIR)\ + + # ######################################################################### # apel # #########################################################################