File: Makefile

package info (click to toggle)
boa 0.93.15-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 528 kB
  • ctags: 393
  • sloc: ansic: 3,141; yacc: 213; makefile: 126; lex: 108; perl: 81; sh: 29
file content (20 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SOURCES = boa.sgml

OBJS = boa.html boa.dvi boa.ps boa.txt

all:	${OBJS}

boa.dvi:	${SOURCES}
	sgml2latex --output=dvi ${SOURCES}

boa.ps:	boa.dvi
	dvips -t letter boa.dvi -o boa.ps

boa.html:	${SOURCES} 
	sgml2html ${SOURCES}

boa.txt:	${SOURCES}
	sgml2txt --filter ${SOURCES}

clean:
	rm -f ${OBJS} boa-*.html