1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/japanese/emacs-manual/files/Makefile.in
Satoshi Asami 7a96c39f50 o Fix checksum dependency to emacs20.
o Change port's texinfo format procedure more verbose one.  This also
     fixes the build problem on 4-current.

PR:		16357
Submitted by:	maintainer
2000-01-27 21:51:21 +00:00

20 lines
463 B
Makefile

TEXIFILE= emacs.texi
INFOFILE= ../info/emacs-ja
EMACS?= emacs
EMACS_ARGS= -batch -nw --multibyte -no-init-file -no-site-file
EMACS_LOADLIBS= --load=texinfmt.el --load=PORT_TEXIFMT.MK
EMACS_FUNCALLS= --eval "(defconst PORT-TEXI \"${TEXIFILE}\")" -f port-texinfo-format
all: ${INFOFILE}
${INFOFILE}: ${TEXIFILE}
${EMACS} ${EMACS_ARGS} ${EMACS_LOADLIBS} ${EMACS_FUNCALLS}
install: all
${BSD_INSTALL_DATA} ${INFOFILE} ${PREFIX}/info
clean:
rm -f ${INFOFILE}