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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
# $Author: tv.raman.tv $
# Description: Makefile for Emacspeak
# Keywords: Emacspeak, TTS,Makefile
# {{{ LCD Entry:
# LCD Archive Entry:
# emacspeak| T. V. Raman |raman@cs.cornell.edu
# A speech interface to Emacs |
# Location undetermined
#
# }}}
# {{{ Copyright:
#Copyright (C) 1995 -- 2015, T. V. Raman
# Copyright (c) 1994, 1995 by Digital Equipment Corporation.
# All Rights Reserved.
#
# This file is not part of GNU Emacs, but the same permissions apply.
#
# GNU Emacs 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.
#
# GNU Emacs 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, 675 Mass Ave, Cambridge, MA 02139, USA.
# }}}
# {{{ Installation instructions:
# If you're reading this, then you've already unpacked the tar archive
# and extracted the sources in a directory.
# cd to the directory where you placed the sources.
# This directory is referred to henceforth as EMACSPEAK_DIR.
# and then type
# make config
# Now type
# make
# to compile the files, then
# sudo make install
# to install them.
#
# By default, files are installed in subdirectories of /usr --
# that is, executables in /usr/bin, .info files in
# /usr/share/info, and elisp files in /usr/share/emacs/site-lisp/emacspeak.
# If you want them somewhere else, you may add a "prefix=" parameter to the
# make install command. For example, to place files in subdirectories of
# /usr/local instead of /usr, use this command:
# sudo make prefix=/usr/local install
#
# emacspeak uses tclx --extended tcl-- for the speech server.
# Note: Extended TCL --tclx-- is *not* tclsh
# Setting up speech server:
# Emacspeak comes with two servers written in TCL:
# 1) dtk-exp for the Dectalk Express
#2 outloud --- for ViaVoice outloud
# 3 espeak for Espeak
# emacspeak uses the shell environment variable DTK_PROGRAM to determine
# which server to use, and the shell environment variable DTK_PORT
# to determine the port where the Dectalk is connected.
# Examples: If using csh or tcsh
# setenv DTK_PROGRAM "dtk-exp"
# or if using bash
# export DTK_PROGRAM=dtk-exp
# By default the port is /dev/tty00 on ultrix/osf1, and /dev/ttyS0 on linux.
#
# Finally, make sure that tclsh is present in your search path by typing
# which tclsh
# Assuming you're using dtk-exp:
# Check that the dtk-exp can be run by typing
# <emacspeak-dir>/dtk-exp
# You should hear the Dectalk speak and get a TCL prompt if everything is okay.
# Next, check that your serial port is working correctly, and that your stty
# settings are correct. You can do this by executing the following sequence
# of TCL commands in the TCL session you just started:
#q {this is a test. }; d
# should speak the text within the braces.
# s
# The above command stops speech.
# You should see a TCL prompt when you execute it.
# If things appear to hang when you execute tts_stop
# i.e. you don't see a TCL prompt (%) then
# a) The serial cable conecting your speech device is flaky
# b) Your serial port is flaky
# c) The stty settings on the port are incorrect for your
# system
#In the case of (c) on solaris systems,
#try setting environment variable DTK_OS to solaris.
# In the case of (c) please report the problem
# quit this tcl session by typing ctrl-d
#
# To use emacspeak you can do one of the following:
# Add the line
# (load-file (expand-file-name "<EMACSPEAK_DIR>/emacspeak-setup.el"))
# to the start of your .emacs
# This will start emacspeak every time you use emacs
# or alternatively set the following alias.
# If you use csh or tcsh
# alias emacspeak "emacs -q -l <EMACSPEAK_DIR>/emacspeak-setup.el -l $HOME/.emacs"
# If you use bash (the default under linux)
# alias emacspeak="emacs -q -l <EMACSPEAK_DIR>/emacspeak-setup.el -l $HOME/.emacs"
# Note: in all of the above you should replace <EMACSPEAK_DIR> with your
# site-specific value. The distribution also creates a shell executable
# The now deprecated emacspeak.sh that does the same thing as the alias shown above.
# }}}
# {{{ Site Configuration
##### Site Configuration #####
MAKE=make
prefix = $(DESTDIR)/usr
# where executables go
bindir = ${prefix}/bin
# where info files should go
infodir = ${prefix}/share/info
# where the emacspeak library directory should go
libparentdir = ${prefix}/share/emacs/site-lisp
# where all emacspeak files should go
libdir =$(libparentdir)/emacspeak
#directory where we are building
SRC = $(shell pwd)
# How to install files
INSTALL = install
CP=cp
# }}}
############## no user serviceable parts beyond this point ###################
# {{{ setup distribution
# source files to distribute
ID = README
STUMPWM=stumpwm
TABLE_SAMPLES=etc/tables/*.tab
FORMS =etc/forms/*.el
MEDIA=media
ECI=servers/linux-outloud
ESPEAK=servers/linux-espeak/tclespeak.cpp \
servers/linux-espeak/Makefile\
DTKTTS=servers/software-dtk/tcldtk.c \
servers/software-dtk/DTK \
servers/software-dtk/Makefile
OUTLOUD=${ECI}/eci.ini \
${ECI}/*.h \
${ECI}/*.cpp \
${ECI}/ALSA ${ECI}/asoundrc \
${ECI}/atcleci.so ${ECI}/Makefile
NEWS = etc/NEWS* etc/COPYRIGHT \
etc/remote.txt etc/applications.html etc/tips.html
SOUNDS=sounds/classic sounds/emacspeak.mp3 \
sounds/pan-chimes sounds/3d
TCL_PROGRAMS = servers/.servers \
servers/dtk-exp servers/ssh-dtk-exp\
servers/dtk-soft \
servers/espeak \
servers/mac \
servers/outloud servers/ssh-outloud servers/32-outloud \
servers/tts-lib.tcl \
servers/cloud* servers/log* servers/speech-server
PHANTOM=phantom/*.js
ELISP = lisp/*.el lisp/g-client \
lisp/Makefile
TEMPLATES = etc/emacspeak.sh.def etc/Makefile
MISC=etc/extract-table.pl etc/last-log.pl \
etc/pdf2text etc/doc2text \
etc/xls2html etc/ppt2html \
etc/ocr-client.pl \
etc/emacspeak.xpm etc/emacspeak.jpg
INFO = info/Makefile info/*.texi
XSL=xsl
DISTFILES =${ELISP} ${TEMPLATES} ${TCL_PROGRAMS} ${XSL} \
${OUTLOUD} ${DTKTTS} ${ESPEAK} \
${PHANTOM} ${STUMPWM} ${INFO} ${NEWS} ${MISC} Makefile
# }}}
# {{{ User level targets emacspeak info
emacspeak:
test -f lisp/emacspeak-loaddefs.el || ${MAKE} config
cd lisp; $(MAKE)
touch $(ID)
chmod 644 $(ID)
@echo "Now check installation of the speech server. "
@echo "See Makefile for instructions."
@echo "See the NEWS file for a summary of new features --control e cap n in Emacs"
@echo "See Emacspeak Customizations for customizations -- control e cap C in Emacs"
@echo "Use C-h p in Emacs for a package overview"
@echo "Make sure you read the Emacs info pages"
# }}}
# {{{ Maintainance targets tar dist
GITVERSION=$(shell git show HEAD | head -1 | cut -b 8- )
README: force
@rm -f README
@echo "Emacspeak Revision $(GITVERSION)" > $(ID)
@echo "Distribution created by `whoami` on `hostname`" >> $(ID)
@echo "Unpack the distribution And type make config " >> $(ID)
@echo "Then type make" >> $(ID)
@echo "See the Makefile for details. " >> $(ID)
force:
EXCLUDES= --exclude='.git' \
--exclude='*.elc' --exclude='*.o' --exclude='*.so' --exclude='*/.libs'
tar:
make ${ID}
tar cvf emacspeak.tar $(EXCLUDES) $(DISTFILES) $(ID) \
${TABLE_SAMPLES} ${MEDIA} ${FORMS} \
${SOUNDS}
dist: $(DISTFILES)
$(MAKE) tar
# }}}
# {{{ User level target-- config
config:
cd etc && $(MAKE) config
cd lisp && $(MAKE) config
@echo "Configured emacspeak in directory $(SRC). Now type make emacspeak"
# }}}
# {{{ user level target-- install uninstall
# We install both elisp sources and the resulting .elc files
install:
$(MAKE) config
$(INSTALL) -d $(libparentdir)
$(INSTALL) -d $(libdir)
$(INSTALL) -d $(libdir)/lisp
$(INSTALL) -d $(libdir)/lisp/g-client
$(INSTALL) -d $(libdir)/etc
$(INSTALL) -d $(libdir)/xsl
$(INSTALL) -m 0644 ${ID} $(libdir)
$(INSTALL) -m 0644 lisp/*.el lisp/*.elc $(libdir)/lisp
$(INSTALL) -m 0644 lisp/g-client/*.el $(libdir)/lisp/g-client
$(INSTALL) -m 0644 lisp/g-client/*.elc $(libdir)/lisp/g-client
$(INSTALL) -m 0644 lisp/g-client/*.xsl $(libdir)/lisp/g-client
$(INSTALL) -m 0644 xsl/*.xsl $(libdir)/xsl
$(INSTALL) -d $(libdir)/sounds
$(INSTALL) -d $(libdir)/phantom
$(CP) -r $(PHANTOM) $(libdir)/phantom
$(INSTALL) -d $(libdir)/servers
$(INSTALL) -d $(libdir)/servers/linux-outloud
$(INSTALL) -d $(libdir)/servers/linux-espeak
$(INSTALL) -m 755 ${ESPEAK} $(libdir)/servers/linux-espeak
$(INSTALL) -d $(libdir)/servers/software-dtk
$(INSTALL) -m 755 ${DTKTTS} $(libdir)/servers/software-dtk
$(INSTALL) -m 755 ${TCL_PROGRAMS} $(libdir)/servers
$(INSTALL) -m 0644 ${NEWS} $(libdir)/etc
cp ${MISC} $(libdir)/etc
$(CP) -r $(SOUNDS) $(libdir)/sounds
chmod -R go+rX $(libdir)/sounds
$(CP) -r $(MEDIA) $(libdir)
chmod -R go+rX $(libdir)/media
$(CP) -r $(STUMPWM) $(libdir)
chmod -R go+rX $(libdir)/stumpwm
$(INSTALL) -d $(libdir)/etc/forms
$(INSTALL) -m 0644 $(FORMS) $(libdir)/etc/forms
$(INSTALL) -d $(libdir)/etc/tables
$(INSTALL) -m 0644 $(TABLE_SAMPLES) $(libdir)/etc/tables
$(INSTALL) -d $(bindir)
$(INSTALL) -m 0755 etc/emacspeak.sh $(bindir)/emacspeak
$(INSTALL) -d $(infodir)
uninstall:
# }}}
# {{{ complete build
#targets
#the complete build
all: emacspeak
#clean, config and build
q:
make clean
make config
make
# }}}
# {{{ user level target-- clean
clean:
cd lisp; $(MAKE) clean
# }}}
# {{{ labeling releases
#label releases when ready
LABEL=#version number
MSG="Releasing ${LABEL}"
release: #supply LABEL=NN.NN
git tag -a -s ${LABEL} -m "Tagging release with ${LABEL}"
git push --tags
$(MAKE) dist
mkdir emacspeak-${LABEL}; \
cd emacspeak-${LABEL} ;\
tar xvf ../emacspeak.tar ; \
rm -f ../emacspeak.tar ; \
cd .. ;\
tar cvfj emacspeak-${LABEL}.tar.bz2 emacspeak-$(LABEL); \
/bin/rm -rf emacspeak-${LABEL} ;\
echo "Prepared release in emacspeak-${LABEL}.tar.bz2"
./utils/emacspeak-ghr ${LABEL} "emacspeak-${LABEL}.tar.bz2"
# }}}
# {{{list distfiles to stdout
list_dist:
ls -1 $(DISTFILES)
# }}}
# {{{ end of file
#local variables:
#major-mode: makefile-mode
#eval: (fold-set-marks "# {{{" "# }}}")
#fill-column: 90
#folded-file: t
#end:
# }}}
|