cleanup in lisp/Makefile, targets; create org-fixup.el, remove version definition
* UTILITIES/org-fixup.el: new file, has functions to create
org-version.el and org-install.el, now use by the build system.
* lisp/Makefile: delete said definitions, now sourced from toplevel
make. "clean" and "cleanall" should do the same thing here, make
them aliases, ditto for "all" and "compile". Both autoload files
must be .PHONY and depend only on each other for correct ordering.
Make "compile-dirty" actually do that again (i.e. no implied
"clean", but "cleanauto"). Remove autoload files directly after
install, so that they will only be present when explicitly requested
by "autoloads". Create "org-version.el" before compilation as it is
mandatory. Remove $(ORG_MAKE_INSTALL) and $(ORG_MAKE_VERSION),
source from default.mk/local.mk.
* default.mk: move definitions for $(ORG_MAKE_INSTALL) and
$(ORG_MAKE_VERSION) here so that they can be more easily configured.
Remove definition of "org-release" from $(BATCH) and $(BTEST), now
sourced from "org-version.el".
* targets.mk: target reorganization, introduce "stop" targets to
prevent cleaning of org-version.el. Use new targets for "oldorg" to
make it more robust in case of errors. New target "cleanutils" to
remove any "*.elc" files that may have been produced there and add
this target to "cleanall". Do the same in cleancontrib.
2012-04-28 17:24:39 +00:00
|
|
|
.EXPORT_ALL_VARIABLES:
|
2011-07-12 20:31:41 +00:00
|
|
|
.NOTPARALLEL: .PHONY
|
2011-07-12 17:45:59 +00:00
|
|
|
# Additional distribution files
|
|
|
|
DISTFILES_extra= Makefile request-assign-future.txt contrib etc
|
|
|
|
|
2012-01-02 20:24:36 +00:00
|
|
|
LISPDIRS = lisp
|
cleanup in lisp/Makefile, targets; create org-fixup.el, remove version definition
* UTILITIES/org-fixup.el: new file, has functions to create
org-version.el and org-install.el, now use by the build system.
* lisp/Makefile: delete said definitions, now sourced from toplevel
make. "clean" and "cleanall" should do the same thing here, make
them aliases, ditto for "all" and "compile". Both autoload files
must be .PHONY and depend only on each other for correct ordering.
Make "compile-dirty" actually do that again (i.e. no implied
"clean", but "cleanauto"). Remove autoload files directly after
install, so that they will only be present when explicitly requested
by "autoloads". Create "org-version.el" before compilation as it is
mandatory. Remove $(ORG_MAKE_INSTALL) and $(ORG_MAKE_VERSION),
source from default.mk/local.mk.
* default.mk: move definitions for $(ORG_MAKE_INSTALL) and
$(ORG_MAKE_VERSION) here so that they can be more easily configured.
Remove definition of "org-release" from $(BATCH) and $(BTEST), now
sourced from "org-version.el".
* targets.mk: target reorganization, introduce "stop" targets to
prevent cleaning of org-version.el. Use new targets for "oldorg" to
make it more robust in case of errors. New target "cleanutils" to
remove any "*.elc" files that may have been produced there and add
this target to "cleanall". Do the same in cleancontrib.
2012-04-28 17:24:39 +00:00
|
|
|
OTHERDIRS = doc etc
|
|
|
|
SUBDIRS = $(OTHERDIRS) $(LISPDIRS)
|
2012-01-02 20:24:36 +00:00
|
|
|
INSTSUB = $(SUBDIRS:%=install-%)
|
2012-04-22 06:22:31 +00:00
|
|
|
ORG_MAKE_DOC ?= info html pdf
|
2012-01-02 20:24:36 +00:00
|
|
|
|
|
|
|
ifneq ($(wildcard .git),)
|
|
|
|
GITVERSION ?= $(shell git describe --abbrev=6 HEAD)
|
|
|
|
ORGVERSION ?= $(subst release_,,$(shell git describe --abbrev=0 HEAD))
|
|
|
|
GITSTATUS ?= $(shell git status -uno --porcelain)
|
|
|
|
else
|
|
|
|
GITVERSION ?= N/A
|
|
|
|
ORGVERSION ?= N/A
|
|
|
|
endif
|
|
|
|
DATE = $(shell date +%Y-%m-%d)
|
|
|
|
ifneq ($(GITSTATUS),)
|
2012-05-17 08:40:54 +00:00
|
|
|
GITVERSION := $(GITVERSION:.dirty=).dirty
|
2011-11-06 16:53:45 +00:00
|
|
|
endif
|
|
|
|
|
2012-04-23 19:20:58 +00:00
|
|
|
.PHONY: all oldorg update update2 up0 up1 up2 compile $(SUBDIRS) \
|
2012-06-02 11:32:53 +00:00
|
|
|
check test install info html pdf card doc docs $(INSTSUB) \
|
2012-07-15 16:21:42 +00:00
|
|
|
autoloads cleanall clean \
|
|
|
|
cleancontrib cleantesting cleanutils
|
|
|
|
cleanrel clean-install cleanelc cleandirs \
|
|
|
|
cleanlisp cleandoc cleandocs cleantest \
|
2012-06-02 11:32:53 +00:00
|
|
|
compile compile-dirty uncompiled \
|
|
|
|
config config-test config-exe config-all config-eol
|
|
|
|
|
|
|
|
CONF_BASE = EMACS lispdir infodir datadir testdir
|
|
|
|
CONF_TEST = BTEST_PRE BTEST_POST BTEST_OB_LANGUAGES BTEST_EXTRA
|
|
|
|
CONF_EXEC = CP MKDIR RM RMR FIND SUDO PDFTEX TEXI2PDF TEXI2HTML MAKEINFO INSTALL_INFO
|
|
|
|
CONF_CALL = BATCH BATCHL ELCDIR BTEST MAKE_LOCAL_MK MAKE_ORG_INSTALL MAKE_ORG_VERSION
|
|
|
|
config-eol:: EOL = \#
|
|
|
|
config-eol:: config-all
|
|
|
|
config config-all::
|
|
|
|
$(info )
|
|
|
|
$(info ========= Emacs executable and Installation paths)
|
|
|
|
$(foreach var,$(CONF_BASE),$(info $(var) = $($(var))$(EOL)))
|
|
|
|
config-test config-all::
|
|
|
|
$(info )
|
|
|
|
$(info ========= Test configuration)
|
|
|
|
$(foreach var,$(CONF_TEST),$(info $(var) = $($(var))$(EOL)))
|
|
|
|
config-exe config-all::
|
|
|
|
$(info )
|
|
|
|
$(info ========= Executables used by make)
|
|
|
|
$(foreach var,$(CONF_EXEC),$(info $(var) = $($(var))$(EOL)))
|
|
|
|
config-cmd config-all::
|
|
|
|
$(info )
|
|
|
|
$(info ========= Commands used by make)
|
|
|
|
$(foreach var,$(CONF_CALL),$(info $(var) = $($(var))$(EOL)))
|
|
|
|
config config-test config-exe config-all::
|
|
|
|
$(info )
|
2012-04-23 19:20:58 +00:00
|
|
|
|
2012-04-30 04:49:23 +00:00
|
|
|
oldorg: compile info # what the old makefile did when no target was specified
|
2012-04-25 17:04:29 +00:00
|
|
|
uncompiled: cleanlisp autoloads # for developing
|
2012-04-23 19:20:58 +00:00
|
|
|
refcard: card
|
|
|
|
update update2:: up0 all
|
|
|
|
|
|
|
|
.PRECIOUS: local.mk
|
|
|
|
local.mk:
|
2012-04-25 17:04:29 +00:00
|
|
|
$(info ======================================================)
|
|
|
|
$(info = Invoke "make help" for a synopsis of make targets. =)
|
|
|
|
$(info = Created a default local.mk template. =)
|
|
|
|
$(info = Setting "oldorg" as the default target. =)
|
|
|
|
$(info = Please adapt local.mk to your local setup! =)
|
|
|
|
$(info ======================================================)
|
2012-05-26 20:32:21 +00:00
|
|
|
-@$(MAKE_LOCAL_MK)
|
2012-04-21 15:25:35 +00:00
|
|
|
|
2012-05-18 15:43:46 +00:00
|
|
|
all compile::
|
|
|
|
$(foreach dir, doc lisp, $(MAKE) -C $(dir) clean;)
|
|
|
|
compile compile-dirty::
|
|
|
|
$(MAKE) -C lisp $@
|
cleanup in lisp/Makefile, targets; create org-fixup.el, remove version definition
* UTILITIES/org-fixup.el: new file, has functions to create
org-version.el and org-install.el, now use by the build system.
* lisp/Makefile: delete said definitions, now sourced from toplevel
make. "clean" and "cleanall" should do the same thing here, make
them aliases, ditto for "all" and "compile". Both autoload files
must be .PHONY and depend only on each other for correct ordering.
Make "compile-dirty" actually do that again (i.e. no implied
"clean", but "cleanauto"). Remove autoload files directly after
install, so that they will only be present when explicitly requested
by "autoloads". Create "org-version.el" before compilation as it is
mandatory. Remove $(ORG_MAKE_INSTALL) and $(ORG_MAKE_VERSION),
source from default.mk/local.mk.
* default.mk: move definitions for $(ORG_MAKE_INSTALL) and
$(ORG_MAKE_VERSION) here so that they can be more easily configured.
Remove definition of "org-release" from $(BATCH) and $(BTEST), now
sourced from "org-version.el".
* targets.mk: target reorganization, introduce "stop" targets to
prevent cleaning of org-version.el. Use new targets for "oldorg" to
make it more robust in case of errors. New target "cleanutils" to
remove any "*.elc" files that may have been produced there and add
this target to "cleanall". Do the same in cleancontrib.
2012-04-28 17:24:39 +00:00
|
|
|
all clean-install::
|
2012-04-22 06:05:51 +00:00
|
|
|
$(foreach dir, $(SUBDIRS), $(MAKE) -C $(dir) $@;)
|
2011-07-12 17:45:59 +00:00
|
|
|
|
2012-05-18 15:43:46 +00:00
|
|
|
check test:: compile
|
cleanup in lisp/Makefile, targets; create org-fixup.el, remove version definition
* UTILITIES/org-fixup.el: new file, has functions to create
org-version.el and org-install.el, now use by the build system.
* lisp/Makefile: delete said definitions, now sourced from toplevel
make. "clean" and "cleanall" should do the same thing here, make
them aliases, ditto for "all" and "compile". Both autoload files
must be .PHONY and depend only on each other for correct ordering.
Make "compile-dirty" actually do that again (i.e. no implied
"clean", but "cleanauto"). Remove autoload files directly after
install, so that they will only be present when explicitly requested
by "autoloads". Create "org-version.el" before compilation as it is
mandatory. Remove $(ORG_MAKE_INSTALL) and $(ORG_MAKE_VERSION),
source from default.mk/local.mk.
* default.mk: move definitions for $(ORG_MAKE_INSTALL) and
$(ORG_MAKE_VERSION) here so that they can be more easily configured.
Remove definition of "org-release" from $(BATCH) and $(BTEST), now
sourced from "org-version.el".
* targets.mk: target reorganization, introduce "stop" targets to
prevent cleaning of org-version.el. Use new targets for "oldorg" to
make it more robust in case of errors. New target "cleanutils" to
remove any "*.elc" files that may have been produced there and add
this target to "cleanall". Do the same in cleancontrib.
2012-04-28 17:24:39 +00:00
|
|
|
check test test-dirty::
|
2012-02-16 20:24:51 +00:00
|
|
|
-$(MKDIR) $(testdir)
|
|
|
|
TMPDIR=$(testdir) $(BTEST)
|
|
|
|
ifeq ($(TEST_NO_AUTOCLEAN),) # define this variable to leave $(testdir) around for inspection
|
|
|
|
$(MAKE) cleantest
|
|
|
|
endif
|
2012-01-04 20:02:14 +00:00
|
|
|
|
2012-04-23 19:20:58 +00:00
|
|
|
up0 up1 up2::
|
2012-01-05 19:54:52 +00:00
|
|
|
git remote update
|
2011-07-12 17:45:59 +00:00
|
|
|
git pull
|
2012-04-23 19:20:58 +00:00
|
|
|
up1 up2:: all
|
|
|
|
$(MAKE) test-dirty
|
|
|
|
up2 update2::
|
2012-04-30 04:49:23 +00:00
|
|
|
$(SUDO) $(MAKE) install
|
2011-07-12 17:45:59 +00:00
|
|
|
|
2011-07-19 18:05:14 +00:00
|
|
|
install: $(INSTSUB)
|
|
|
|
|
|
|
|
install-info: install-doc
|
2011-07-12 17:45:59 +00:00
|
|
|
|
2012-04-22 06:22:31 +00:00
|
|
|
doc docs: $(ORG_MAKE_DOC)
|
2011-07-12 17:45:59 +00:00
|
|
|
|
2011-07-17 12:49:43 +00:00
|
|
|
info html pdf card:
|
|
|
|
$(MAKE) -C doc $@
|
2011-07-12 20:31:41 +00:00
|
|
|
|
2011-07-19 18:05:14 +00:00
|
|
|
$(INSTSUB):
|
|
|
|
$(MAKE) -C $(@:install-%=%) install
|
2011-07-12 17:45:59 +00:00
|
|
|
|
2012-01-05 19:54:52 +00:00
|
|
|
autoloads: lisp
|
2011-07-17 12:49:43 +00:00
|
|
|
$(MAKE) -C $< $@
|
2011-07-12 17:45:59 +00:00
|
|
|
|
2012-04-22 06:05:51 +00:00
|
|
|
cleandirs:
|
|
|
|
$(foreach dir, $(SUBDIRS), $(MAKE) -C $(dir) cleanall;)
|
2011-07-12 20:31:41 +00:00
|
|
|
|
2011-07-17 12:49:43 +00:00
|
|
|
clean: cleanrel
|
2011-07-16 20:49:24 +00:00
|
|
|
$(MAKE) -C lisp clean
|
2011-07-17 12:49:43 +00:00
|
|
|
$(MAKE) -C doc clean
|
2012-02-16 20:24:51 +00:00
|
|
|
|
2012-07-15 16:18:45 +00:00
|
|
|
cleanall: cleandirs cleantest cleancontrib cleantesting cleanutils
|
2012-05-17 08:12:13 +00:00
|
|
|
-$(FIND) . -name \*~ -o -name \*# -o -name .#\* -exec $(RM) {} \;
|
2011-07-12 20:31:41 +00:00
|
|
|
|
|
|
|
cleancontrib:
|
cleanup in lisp/Makefile, targets; create org-fixup.el, remove version definition
* UTILITIES/org-fixup.el: new file, has functions to create
org-version.el and org-install.el, now use by the build system.
* lisp/Makefile: delete said definitions, now sourced from toplevel
make. "clean" and "cleanall" should do the same thing here, make
them aliases, ditto for "all" and "compile". Both autoload files
must be .PHONY and depend only on each other for correct ordering.
Make "compile-dirty" actually do that again (i.e. no implied
"clean", but "cleanauto"). Remove autoload files directly after
install, so that they will only be present when explicitly requested
by "autoloads". Create "org-version.el" before compilation as it is
mandatory. Remove $(ORG_MAKE_INSTALL) and $(ORG_MAKE_VERSION),
source from default.mk/local.mk.
* default.mk: move definitions for $(ORG_MAKE_INSTALL) and
$(ORG_MAKE_VERSION) here so that they can be more easily configured.
Remove definition of "org-release" from $(BATCH) and $(BTEST), now
sourced from "org-version.el".
* targets.mk: target reorganization, introduce "stop" targets to
prevent cleaning of org-version.el. Use new targets for "oldorg" to
make it more robust in case of errors. New target "cleanutils" to
remove any "*.elc" files that may have been produced there and add
this target to "cleanall". Do the same in cleancontrib.
2012-04-28 17:24:39 +00:00
|
|
|
-$(FIND) contrib -name \*~ -o -name \*.elc -exec $(RM) {} \;
|
|
|
|
|
2012-07-15 16:18:45 +00:00
|
|
|
cleantesting:
|
|
|
|
-$(FIND) testing -name \*~ -o -name \*.elc -exec $(RM) {} \;
|
|
|
|
|
cleanup in lisp/Makefile, targets; create org-fixup.el, remove version definition
* UTILITIES/org-fixup.el: new file, has functions to create
org-version.el and org-install.el, now use by the build system.
* lisp/Makefile: delete said definitions, now sourced from toplevel
make. "clean" and "cleanall" should do the same thing here, make
them aliases, ditto for "all" and "compile". Both autoload files
must be .PHONY and depend only on each other for correct ordering.
Make "compile-dirty" actually do that again (i.e. no implied
"clean", but "cleanauto"). Remove autoload files directly after
install, so that they will only be present when explicitly requested
by "autoloads". Create "org-version.el" before compilation as it is
mandatory. Remove $(ORG_MAKE_INSTALL) and $(ORG_MAKE_VERSION),
source from default.mk/local.mk.
* default.mk: move definitions for $(ORG_MAKE_INSTALL) and
$(ORG_MAKE_VERSION) here so that they can be more easily configured.
Remove definition of "org-release" from $(BATCH) and $(BTEST), now
sourced from "org-version.el".
* targets.mk: target reorganization, introduce "stop" targets to
prevent cleaning of org-version.el. Use new targets for "oldorg" to
make it more robust in case of errors. New target "cleanutils" to
remove any "*.elc" files that may have been produced there and add
this target to "cleanall". Do the same in cleancontrib.
2012-04-28 17:24:39 +00:00
|
|
|
cleanutils:
|
|
|
|
-$(FIND) UTILITIES -name \*~ -o -name \*.elc -exec $(RM) {} \;
|
2011-07-12 20:31:41 +00:00
|
|
|
|
|
|
|
cleanrel:
|
2011-07-17 12:49:43 +00:00
|
|
|
$(RMR) RELEASEDIR
|
|
|
|
$(RMR) org-7.*
|
|
|
|
$(RMR) org-7*zip org-7*tar.gz
|
2012-01-05 19:54:52 +00:00
|
|
|
|
|
|
|
cleanelc cleanlisp:
|
|
|
|
$(MAKE) -C lisp clean
|
2012-02-16 20:24:51 +00:00
|
|
|
-$(FIND) lisp -name \*~ -exec $(RM) {} \;
|
2012-01-05 19:54:52 +00:00
|
|
|
|
|
|
|
cleandoc cleandocs:
|
|
|
|
$(MAKE) -C doc clean
|
2012-02-16 20:24:51 +00:00
|
|
|
-$(FIND) doc -name \*~ -exec $(RM) {} \;
|
|
|
|
|
|
|
|
cleantest:
|
|
|
|
$(RMR) $(testdir)
|