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 44 45 46 47 48 49 50
|
##
## wml_docs/Makefile
## Copyright (c) 1997-2001 Ralf S. Engelschall, <rse@engelschall.com>
##
@SET_MAKE@
SHELL = /bin/sh
top_srcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
INSTALL_PROGRAM = $(top_srcdir)/etc/shtool install -c -m 755 -s
INSTALL_DATA = $(top_srcdir)/etc/shtool install -c -m 644
prefix = @prefix@
exec_prefix = $(prefix)
bindir = $(prefix)/bin
libsubdir = @libsubdir@
libdir = $(prefix)/lib$(libsubdir)
mandir = $(prefix)/man
PATH_PERL = @PATH_PERL@
INSTALLPRIVLIB = @INSTALLPRIVLIB@
INSTALLARCHLIB = @INSTALLARCHLIB@
.SUFFIXES:
.SUFFIXES: .7 .pod
.pod.7:
pod2man --section=7 \
--center="EN Tools" \
--release="EN Tools" \
$< > $@
MANPAGES = wml_intro.7 wml_tutorial.7 wml_faq.7 wml_tags.7 wml_macros.7
all: $(MANPAGES)
wml_tags.pod: wml_tags.pod.in wml_tags.L.main wml_tags.L.incl
$(PATH_PERL) ./wml_tags.pod.pl
clean:
-rm -f $(MANPAGES) wml_tags.pod
distclean: clean
-rm -f Makefile
realclean: distclean
##EOF##
|