File: Makefile

package info (click to toggle)
rasmol 2.7.6.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 17,760 kB
  • sloc: ansic: 78,466; xml: 4,254; sh: 1,538; perl: 816; makefile: 373; csh: 216; yacc: 215
file content (43 lines) | stat: -rwxr-xr-x 1,129 bytes parent folder | download | duplicates (7)
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
CC = cc
CFLAGS = -O2

prepdoc:	prepdoc.c
		$(CC) $(CFLAGS) -o prepdoc prepdoc.c

rasmol.txt:	prepdoc rasmol.doc
		rm -f rasmol.txt
		prepdoc -text rasmol.doc > rasmol.txt
		gzip --best < rasmol.txt > rasmol.txt.gz

rasmol.html:	prepdoc rasmol.doc
		rm -f rasmol.html
		prepdoc -html rasmol.doc > rasmol.html
		gzip --best < rasmol.html > rasmol.html.gz

rasmol.hlp:	prepdoc rasmol.doc
		rm -f rasmol.hlp
		prepdoc -help rasmol.doc > rasmol.hlp
		gzip --best < rasmol.hlp > rasmol.hlp.gz

rasmol.tex:	prepdoc rasmol.doc
		rm -f rasmol.tex
		prepdoc -latex rasmol.doc > rasmol.tex
		gzip --best < rasmol.tex > rasmol.tex.gz

raswin.rtf:	prepdoc rasmol.doc
		rm -f raswin.rtf
		prepdoc -rtf rasmol.doc > raswin.rtf
		gzip --best < raswin.rtf > raswin.rtf.gz

rasmol.man:	prepdoc rasmol.doc
		rm -f rasmol.man
		prepdoc -troff rasmol.doc > rasmol.man
		cp rasmol.man rasmol.1
		gzip --best < rasmol.1 > rasmol.1.gz

rasmol.vms:	prepdoc rasmol.doc
		rm -f rasmol.vms
		prepdoc -vms rasmol.doc > rasmol.vms
		gzip --best < rasmol.vms > rasmol.vms.gz

all:		rasmol.txt rasmol.hlp rasmol.html raswin.rtf rasmol.vms rasmol.tex rasmol.man