ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libptytty/doc/Makefile.in
Revision: 1.7
Committed: Fri Jan 8 11:48:53 2010 UTC (14 years, 4 months ago) by sf-exg
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +0 -0 lines
State: FILE REMOVED
Log Message:
Switch to automake.

File Contents

# Content
1 # doc/Makefile.in -*- Makefile -*-
2
3 SHELL = /bin/sh
4 prefix = @prefix@
5 man3dir = @mandir@/man3
6 man3ext = 3
7 INSTALL = @INSTALL@
8 INSTALL_PROGRAM = @INSTALL@ -m 755
9 INSTALL_DATA = @INSTALL@ -m 644
10
11 srcdir = @srcdir@
12 VPATH = @srcdir@
13 .PATH: @srcdir@
14
15 basedir = ..
16 thisdir = doc
17
18 first_rule: all
19 dummy:
20
21 #-------------------------------------------------------------------------
22
23 all:
24
25 %.3.man: %.3.pod
26 pod2man -n libptytty -r"$(VERSION)" -q\" -s3 -c "LIBPTYTTY" <$< >$@
27
28 %.html: %.3.pod
29 <$< pod2html >$@
30
31 ../README: libptytty.3.pod
32 <$< pod2text >$@
33
34 tags allbin:
35
36 alldoc: libptytty.3.man ../README
37
38 clean:
39
40 realclean: clean
41 rm -f libptytty.3.man libptytty.html ../README
42
43 cleandir: realclean
44
45 distclean:
46
47 install:
48 $(INSTALL) -d $(DESTDIR)$(man3dir)
49 $(INSTALL_DATA) libptytty.3.man $(DESTDIR)$(man3dir)/libptytty.$(man3ext)
50
51 distdepend: alldoc
52