File: Makefile

package info (click to toggle)
wise 2.4.1-28
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,348 kB
  • sloc: ansic: 276,376; makefile: 1,021; perl: 886; lex: 93; yacc: 81; sh: 25
file content (13 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
SHELL		= /bin/sh

MANPAGES	= dba.1 dnal.1 estwise.1 estwisedb.1 genewise.1 genewisedb.1 genomewise.1 promoterwise.1 psw.1 pswdb.1 scanwise.1 scanwise_server.1

all: $(MANPAGES)

$(MANPAGES): %.1 : %.sgml
	docbook-to-man $< > $@

clean:
	$(RM) $(MANPAGES)

.PHONY: all