File: Makefile

package info (click to toggle)
boa 0.93.14.1-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 428 kB
  • ctags: 389
  • sloc: ansic: 3,014; yacc: 210; makefile: 122; lex: 108; perl: 49; sh: 30
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