diff options
Diffstat (limited to 'emacsen/Makefile')
| -rw-r--r-- | emacsen/Makefile | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/emacsen/Makefile b/emacsen/Makefile index 9a3abcf..3ee01e9 100644 --- a/emacsen/Makefile +++ b/emacsen/Makefile @@ -6,6 +6,7 @@ export ELISPDIR  SUBDIRS = auto-complete \  	  auto-indent-mode \  	  magit \ +	  markdown-mode \  	  popup \  	  proofgeneral  #	  color-theme-6.6.0 \ @@ -35,10 +36,10 @@ $(CLEANDIRS):  	$(MAKE) -C $(@:clean-%=%) clean  # Manual overrides: -make-auto-indent-mode make-popup: +make-auto-indent-mode make-markdown-mode make-popup:  	touch $@ -clean-auto-indent-mode: +clean-auto-indent-mode clean-markdown-mode clean-popup:  	echo $@  make-auto-complete: @@ -64,6 +65,9 @@ install-magit:  	-mkdir -p $(EMACSD)/$(@:install-%=%)  	$(MAKE) -C $(@:install-%=%) -e PREFIX="" -e DESTDIR=$(EMACSD) \  		-e SYSCONFDIR="" -e ELISP_INSTALL_DIR=$(EMACSD)/$(@:install-%=%) install +install-markdown-mode: +	mkdir -p $(EMACSD)/$(@:install-%=%) +	install -m 644 $(@:install-%=%)/markdown-mode.el $(EMACSD)/$(@:install-%=%)/  install-popup:  	mkdir -p $(EMACSD)/$(@:install-%=%) | 
