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 # #########################################################################