File: descrip.mms

package info (click to toggle)
xemacs21-packages 2009.02.17.dfsg.1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 116,928 kB
  • ctags: 88,975
  • sloc: lisp: 1,232,060; ansic: 16,570; java: 13,514; xml: 6,477; sh: 4,611; makefile: 4,036; asm: 3,007; perl: 839; cpp: 500; ruby: 257; csh: 96; haskell: 93; awk: 49; python: 47
file content (47 lines) | stat: -rw-r--r-- 961 bytes parent folder | download | duplicates (17)
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
# where the w3 lisp files should go
prefix  = gnu_root
datadir = $(prefix):[lib]
infodir = $(prefix):[info]

ECHO       = write sys$output
MAKEINFO   = makeinfo
TEXI2HTML  = texi2html
TEXI2HTML_FLAGS = 
RM         = delete
MKDIR      = create/dir

############## no user servicable parts beyond this point ###################
.SUFFIXES: .txi .dvi .info .html

%.html: %.txi
	$(TEXI2HTML) $(TEXI2HTML_FLAGS) $(MMS$SOURCE)

%.dvi: %.txi
        tex $(MMS$SOURCE)
	texindex *.cp *.fn *.ky *.pg *.tp *.vr
	tex $(MMS$SOURCE)
	$(RM) 	*.cp  *.fn  *.ky  *.pg  *.tp  *.vr 	\
		*.cps *.fns *.kys *.pgs *.tps *.vrs	\
		*.log *.toc *.aux

%.info: %.txi
	$(MAKEINFO) $(MMS$SOURCE)

all: info

install:
	if f$parse("$(infodir)") .eqs. "" then $(MKDIR) $(infodir)
	copy/log *.info* $(infodir)
	- purge/log $(infodir)

distclean: clean
	$(RM) Makefile

clean:
	$(RM) *.dvi *.info* *.html

html: $(MANUALS:.txi=_toc.html)

dvi: $(MANUALS:.txi=.dvi)

info: $(MANUALS:.txi=.info)