1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
# This Makefile byte-compiles the ECB lisp files and generates online-help.
# Copyright (C) 2000 - 2010 Jesper Nordenberg,
# Klaus Berndl,
# Free Software Foundation, Inc.
# Author: Jesper Nordenberg <mayhem@home.se>
# Klaus Berndl <klaus.berndl@sdm.de>
# Maintainer: Klaus Berndl <klaus.berndl@sdm.de>
# Keywords: browser, code, programming, tools
# Created: 2001
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
# You should have received a copy of the GNU General Public License along with
# GNU Emacs; see the file COPYING. If not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# $Id$
SHELL = /bin/bash
PLATFORM=$(shell uname -s)
#
# Override vars in Makefile.conf if needed
#
-include Makefile.conf
ifeq ($(wildcard Makefile.conf),)
$(warning Makefile.conf not found. Using defaults for $(PLATFORM)!)
$(warning Create Makefile.conf from Makefile.conf.template to override the defaults.)
endif
# When run inside Emacs, the variable contains 't', so correct it
ifeq ($(origin EMACS),environment)
EMACS = emacs
endif
EMACS ?= emacs
# If it's one of Linux, Cygwin, or Darwin, use defaults.
ifneq ($(filter Linux CYGWIN% Darwin, $(PLATFORM)),)
EMACS ?= emacs
CEDET ?=
LOADPATH ?=
MAKEINFO ?= makeinfo
TEXI2PDF ?= texi2pdf
TEXI2DVI ?= texi2dvi
DVIPDFM ?= dvipdf
DVIPS ?= dvips
PS2PDF ?= ps2pdf
EMACSINFOPATH ?=
INSTALLINFO ?= install-info
endif
# For the ECB-maintainers: Change the version-number here and not
# elsewhere!
ecb_VERSION=2.41
include ecb-makedef.mk
all: ecb autoloads online-help
ecb: $(ecb_LISP_EL)
@echo "Byte-compiling ECB with LOADPATH=${LOADPATH} ..."
@$(RM) $(ecb_LISP_ELC) ecb-compile-script
@echo "(add-to-list 'load-path nil)" > ecb-compile-script
@if test ! -z "${CEDET}"; then\
if test -f $(CEDET)/cedet-devel-load.el ; then \
echo "(load-file \"$(CEDET)/cedet-devel-load.el\")" >> ecb-compile-script; \
else \
echo "(load-file \"$(CEDET)/common/cedet.el\")" >> ecb-compile-script; \
fi \
else \
echo "(semantic-mode 1)" >> ecb-compile-script; \
echo "(require 'semantic/bovine/el)" >> ecb-compile-script; \
fi
@if test ! -z "${LOADPATH}"; then\
for loadpath in ${LOADPATH}; do \
echo "(add-to-list 'load-path \"$$loadpath\")" >> ecb-compile-script; \
done; \
fi
@echo "(require 'ecb)" >> ecb-compile-script
@echo "(setq debug-on-error t)" >> ecb-compile-script
$(EBATCH) -l ecb-compile-script --eval '(ecb-byte-compile t)'
@$(RM) ecb-compile-script
online-help: $(ecb_TEXI)
@if command -v "$(MAKEINFO)" >/dev/null 2>&1 ; then\
$(RM) -R $(ecb_INFO_DIR) $(ecb_HTML_DIR); \
$(MKDIR) $(ecb_INFO_DIR) $(ecb_HTML_DIR); \
echo Generating info-format...; \
$(MAKEINFO) --fill-column=78 $<; \
$(MV) *.info* $(ecb_INFO_DIR); \
echo Generating html-format...; \
$(MAKEINFO) --html --output=$(ecb_HTML_DIR) $<; \
for file in $(ecb_HTML_DIR)/*.html; do\
$(MV) $$file tmpfile; \
sed "s/index\\.html/$(ecb_HTML)/g" tmpfile > $$file; \
$(RM) tmpfile; \
done; \
$(MV) $(ecb_HTML_DIR)/index.html $(ecb_HTML_DIR)/$(ecb_HTML); \
else \
echo No info- and html-format generating because the tool; \
echo - makeinfo in $(MAKEINFO); \
echo is not available!; \
fi
pdf: $(ecb_TEXI)
@if command -v "$(TEXI2PDF)" >/dev/null 2>&1; then\
$(RM) $(ecb_PDF); \
echo Generating pdf-format with texi2pdf ...; \
$(TEXI2PDF) --clean $<; \
elif command -v "$(TEXI2DVI)" >/dev/null 2>&1 -a command -v "$(DVIPDFM)" >/dev/null 2>&1; then\
$(RM) $(ecb_DVI) $(ecb_PDF); \
echo Generating pdf-format with dvipdfm ...; \
$(TEXI2DVI) --clean $<; \
$(DVIPDFM) $(ecb_DVI); \
$(RM) $(ecb_DVI); \
elif command -v "$(TEXI2DVI)" >/dev/null 2>&1 -a command -v "$(DVIPS)" >/dev/null 2>&1 -a command -v "$(PS2PDF)" >/dev/null 2>&1; then\
$(RM) $(ecb_DVI) $(ecb_PS) $(ecb_PDF); \
echo Generating pdf-format with dvips and ps2pdf ...; \
$(TEXI2DVI) --quiet --clean $<; \
$(DVIPS) -Pcmz -q $(ecb_DVI) -o $(ecb_PS); \
$(PS2PDF) $(ecb_PS); \
$(RM) $(ecb_DVI) $(ecb_PS); \
else \
echo No pdf-format generating because at least one of the tools; \
echo - texi2pdf in $(TEXI2PDF); \
echo - texi2dvi in $(TEXI2DVI); \
echo - dvips in $(DVIPS); \
echo - ps2pdf in $(PS2PDF); \
echo is not available!; \
fi
install-help: $(ecb_INFO_DIR)/$(ecb_INFO)
@if command -v "$(INSTALLINFO)" >/dev/null 2>&1 -a -f "$(EMACSINFOPATH)/dir"; then\
echo Installing the Online-help in $(EMACSINFOPATH)...; \
$(CP) $(ecb_INFO_DIR)/*info* $(EMACSINFOPATH); \
$(INSTALLINFO) $< $(EMACSINFOPATH)/dir; \
else \
echo Can not install the online-help because either; \
echo - the tool $(INSTALLINFO) or; \
echo - the file $(EMACSINFOPATH)/dir; \
echo is not available!; \
fi
clean:
@$(RM) $(ecb_LISP_ELC) ecb-compile-script ecb-autoloads.el*
# The targets below are only for maintaining the ECB-package.
$(ecb_INFO_DIR)/$(ecb_INFO): online-help
# updates RELEASE_NOTES, README, NEWS, ecb.texi and ecb.el to the
# version-number of $(ecb_VERSION).
prepversion:
@$(MV) RELEASE_NOTES RELEASE_NOTES.tmp
@sed "1s/version.*/version $(ecb_VERSION)/" RELEASE_NOTES.tmp > RELEASE_NOTES
@$(RM) RELEASE_NOTES.tmp
@$(MV) README README.tmp
@sed "1s/version.*/version $(ecb_VERSION)/" README.tmp > README
@$(RM) README.tmp
@$(MV) NEWS NEWS.tmp
@sed "1s/version.*/version $(ecb_VERSION)/" NEWS.tmp > NEWS
@$(RM) NEWS.tmp
@$(MV) ecb-upgrade.el ecb-upgrade.el.tmp
@sed "s/^(defconst ecb-version.*/(defconst ecb-version \"$(ecb_VERSION)\"/" ecb-upgrade.el.tmp > ecb-upgrade.el
@$(RM) ecb-upgrade.el.tmp
@(echo "/@macro ecbver"; \
echo "+"; \
echo "c"; \
echo "$(ecb_VERSION)"; \
echo "."; \
echo "w"; \
echo "q") | ed -s $(ecb_TEXI) 1> /dev/null
autoloads: ecb
@$(RM) $(ecb_AUTOLOADS) $(ecb_AUTOLOADS)c
$(EBATCH) --eval "(add-to-list 'load-path nil)" -l ecb-autogen -f ecb-update-autoloads
# builds the distribution file $(ecb_VERSION).tar.gz
distrib: $(ecb_INFO_DIR)/$(ecb_INFO) prepversion autoloads ecb
@$(RM) ecb-$(ecb_VERSION).tar.gz
@$(RM) -R ecb-$(ecb_VERSION)
@$(MKDIR) ecb-$(ecb_VERSION)
@$(CP) $(ecb_DISTRIB_FILES) ecb-$(ecb_VERSION)
@$(CP) -r $(ecb_INFO_DIR) ecb-$(ecb_VERSION)
@$(CP) -r $(ecb_HTML_DIR) ecb-$(ecb_VERSION)
@$(CP) -r $(ecb_IMAGE_DIR) ecb-$(ecb_VERSION)
@find ecb-$(ecb_VERSION)/$(ecb_IMAGE_DIR) -name CVS -print | xargs rm -Rf
@find ecb-$(ecb_VERSION)/$(ecb_IMAGE_DIR) -name *~ -print | xargs $(RM)
@find ecb-$(ecb_VERSION)/$(ecb_IMAGE_DIR) -name *.png -print | xargs $(RM)
@tar -cvzf ecb-$(ecb_VERSION).tar.gz ecb-$(ecb_VERSION)
@$(RM) -R ecb-$(ecb_VERSION)
printconf:
@echo Platform: $(PLATFORM)
@echo ECB version: $(ecb_VERSION)
@echo Emacs: $(EMACS)
@if test -n "${CEDET}"; then echo "CEDET: ${CEDET}"; else echo "CEDET: Emacs-builtin"; fi
@echo Load path: $(LOADPATH)
@echo Emacs info path: $(EMACSINFOPATH)
@echo command -v "${INSTALLINFO}" >/dev/null 2>&1 && echo "install-info: ${INSTALLINFO}" || echo "install-info: cannot execute ${INSTALLINFO}"
@echo command -v "${MAKEINFO}" >/dev/null 2>&1 && echo "makeinfo: ${MAKEINFO}" || echo "makeinfo: cannot execute ${MAKEINFO}"
@echo command -v "${TEXI2PDF}" >/dev/null 2>&1 && echo "texi2pdf: ${TEXI2PDF}" || echo "texi2pdf: cannot execute ${TEXI2PDF}"
@echo command -v "${TEXI2DVI}" >/dev/null 2>&1 && echo "texi2dvi: ${TEXI2DVI}" || echo "texi2dvi: cannot execute ${TEXI2DVI}"
@echo command -v "${DVIPDFM}" >/dev/null 2>&1 && echo "dvipdfm: ${DVIPDFM}" || echo "dvipdfm: cannot execute ${DVIPDFM}"
@echo command -v "${DVIPS}" >/dev/null 2>&1 && echo "dvips: ${DVIPS}" || echo "dvips: cannot execute ${DVIPS}"
@echo command -v "${PS2PDF}" >/dev/null 2>&1 && echo "ps2pdf: ${PS2PDF}" || echo "ps2pdf: cannot execute ${PS2PDF}"
# End of Makefile
|