diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-02-25 11:25:17 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-02-25 14:44:08 -0500 |
commit | dc82a853f0761c90cdaf48688a6636aaf04e5737 (patch) | |
tree | 1de27582e4c3cf059cad79988dd0c9af5087eba7 /emacsen/Makefile | |
parent | Drop the grop alias from .zshrc, handled by environment var (diff) |
Preliminary import of vm
Diffstat (limited to '')
-rw-r--r-- | emacsen/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/emacsen/Makefile b/emacsen/Makefile index 0e72249..9880e50 100644 --- a/emacsen/Makefile +++ b/emacsen/Makefile @@ -9,7 +9,8 @@ SUBDIRS = auto-complete \ magit \ markdown-mode \ popup \ - proofgeneral + proofgeneral \ + vm # color-theme-6.6.0 \ MAKEDIRS = $(SUBDIRS:%=make-%) @@ -50,6 +51,10 @@ make-auto-complete: make-proofgeneral: $(MAKE) -C $(@:make-%=%) compile +make-vm: + cd $(@:make-%=%) && autoconf && ./configure --prefix=$(EMACSD) + $(MAKE) -C $(@:make-%=%) + install-auto-complete: -mkdir -p $(EMACSD)/$(@:install-%=%) $(MAKE) -C $(@:install-%=%) -e DIR=$(EMACSD)/$(@:install-%=%) install @@ -82,7 +87,14 @@ install-proofgeneral: -mkdir -p $(EMACSD)/$(@:install-%=%) $(MAKE) -C $(@:install-%=%) -e ELISP=$(EMACSD)/$(@:install-%=%) install-el install-elc +install-vm: + -mkdir -p $(EMACSD)/$(@:install-%=%) + $(MAKE) -C $(@:install-%=%) -e lispdir=$(EMACSD)/$(@:install-%=%) install + clean-magit: $(MAKE) -C $(@:clean-%=%) clean +clean-vm: + $(MAKE) -C $(@:clean-%=%) distclean + .PHONY: all install clean $(CLEANDIRS) |