File: Makefile

package info (click to toggle)
emacspeak 15-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,596 kB
  • ctags: 3,499
  • sloc: lisp: 33,875; makefile: 592; sh: 495; tcl: 492; perl: 351; cpp: 239
file content (59 lines) | stat: -rw-r--r-- 1,746 bytes parent folder | download
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
#$Id: Makefile,v 15.0 2001/11/20 20:05:31 raman Exp $
TEXINDEX=texindex
MAKEINFO = makeinfo 
TEXI2HTML=texi2html
infodir =/usr/info#normally supplied by caller
INSTALL = install

docs: emacspeak.txt info

emacspeak.txt: emacspeak.html
	lynx -dump -nolist emacspeak.html >emacspeak.txt

info: *.texi
	-chmod 644 *info*
	makeinfo emacspeak.texi


install: emacspeak.info
	if test  -x /sbin/install-info ; then \
		install-info emacspeak.info /etc/info-dir; \
	fi
	$(INSTALL)  -m 644 emacspeak.info* $(infodir)

uninstall:
	if test  -e /sbin/install-info ; then \
		install-info --delete $(infodir)/emacspeak.info /etc/info-dir; \
	fi
	rm -f $(infodir)/emacspeak.info*
emacspeak.info: emacspeak.texi

emacspeak.dvi:		emacspeak.texi
	tex emacspeak.texi
	$(TEXINDEX) emacspeak.cp  emacspeak.fn  emacspeak.ky  emacspeak.pg  emacspeak.tp  emacspeak.vr
	tex emacspeak.texi
	rm -f 	emacspeak.cp  emacspeak.fn  emacspeak.ky  emacspeak.pg  emacspeak.tp  emacspeak.vr 	\
		emacspeak.cps emacspeak.fns emacspeak.kys emacspeak.pgs emacspeak.tps emacspeak.vrs	\
		emacspeak.log emacspeak.toc emacspeak.aux


emacspeak.pdf:		emacspeak.texi
	pdftex emacspeak.texi
	$(TEXINDEX) emacspeak.cp  emacspeak.fn  emacspeak.ky  emacspeak.pg  emacspeak.tp  emacspeak.vr
	pdftex emacspeak.texi
	rm -f 	emacspeak.cp  emacspeak.fn  emacspeak.ky  emacspeak.pg  emacspeak.tp  emacspeak.vr 	\
		emacspeak.cps emacspeak.fns emacspeak.kys emacspeak.pgs emacspeak.tps emacspeak.vrs	\
		emacspeak.log emacspeak.toc emacspeak.aux


print: emacspeak.dvi
	dvips emacspeak.dvi

emacspeak.html: *.texi
	texi2html -monolithic emacspeak.texi
	-perl add-css.pl emacspeak.html

pub:  emacspeak.html
	scp emacspeak.html     raman@emacspeak.sourceforge.net:~/www-emacspeak/htdocs/info

clean: