summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gratz <Stromeko@Stromeko.DE>2012-11-07 18:45:25 +0100
committerAchim Gratz <Stromeko@Stromeko.DE>2012-11-07 18:45:25 +0100
commitc149e04ade80f077379ecaaaa845f1ffae6f1448 (patch)
tree3cda4b0dd0666da463d14140aa77a8d3b3dffb5e
parentc2ebeea6f68f2ef804d387c238e4acccf655dc64 (diff)
parentca5d5e9c9b792f139362968de60b5a3cbf92064b (diff)
downloadorg-mode-c149e04ade80f077379ecaaaa845f1ffae6f1448.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/Makefile32
1 files changed, 19 insertions, 13 deletions
diff --git a/lisp/Makefile b/lisp/Makefile
index e2f1768..0e10c23 100644
--- a/lisp/Makefile
+++ b/lisp/Makefile
@@ -4,13 +4,23 @@ ifeq ($(MAKELEVEL), 0)
$(error This make needs to be started as a sub-make from the toplevel directory.)
endif
-LISPV = org-version.el
-LISPI = org-loaddefs.el
-LISPA = $(LISPV) $(LISPI)
-LISPB = $(LISPA:%el=%elc) org-install.elc
-LISPF = $(filter-out $(LISPA),$(sort $(wildcard *.el)))
-LISPC = $(filter-out $(LISPB) $(LISPN:%el=%elc),$(LISPF:%el=%elc))
-_ORGCM_ = dirall single source slint1 slint2
+ifneq ($(ORG_ADD_CONTRIB),)
+ _ORG_ADD_EL_ := \
+ $(notdir \
+ $(wildcard \
+ $(addsuffix .el, \
+ $(addprefix ../contrib/lisp/, \
+ $(basename \
+ $(notdir $(ORG_ADD_CONTRIB)))))))
+endif
+
+LISPV := org-version.el
+LISPI := org-loaddefs.el
+LISPA := $(LISPV) $(LISPI)
+LISPB := $(LISPA:%el=%elc) org-install.elc
+LISPF := $(filter-out $(LISPA),$(sort $(wildcard *.el) $(_ORG_ADD_EL_)))
+LISPC := $(filter-out $(LISPB) $(LISPN:%el=%elc),$(LISPF:%el=%elc))
+_ORGCM_ := dirall single source slint1 slint2
-include local.mk
.PHONY: all compile compile-dirty \
@@ -51,11 +61,7 @@ slint1:
addcontrib:
ifneq ($(ORG_ADD_CONTRIB),)
- $(CP) $(wildcard \
- $(addsuffix .el, \
- $(addprefix ../contrib/lisp/, \
- $(basename \
- $(notdir $(ORG_ADD_CONTRIB)))))) .
+ $(CP) $(addprefix ../contrib/lisp/,$(_ORG_ADD_EL_)) .
endif
autoloads: cleanauto addcontrib $(LISPI) $(LISPV)
@@ -70,7 +76,7 @@ $(LISPI): $(LISPV) $(LISPF)
@$(RM) $(@)
@$(MAKE_ORG_INSTALL)
-install: $(LISPF) compile
+install: compile $(LISPF)
if [ ! -d $(DESTDIR)$(lispdir) ] ; then \
$(MKDIR) $(DESTDIR)$(lispdir) ; \
fi ;