ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/doc/Makefile.in
Revision: 1.3
Committed: Sat Jul 21 13:23:18 2007 UTC (16 years, 10 months ago) by pippijn
Branch: MAIN
Changes since 1.2: +4 -2 lines
Log Message:
- added rcsid to some files
- more documentation tweaks
- made most protocol commands local to phandler.C
- added ircd metadata (inspircd only for now)
- added inspircd swhois support

File Contents

# User Rev Content
1 pippijn 1.3 # $Id$
2    
3 pippijn 1.1 PERL = @PERL@
4     RM = @RM@
5     CP = @CP@
6     INSTALL = @INSTALL@
7     DESTDIR = @prefix@
8     SHAREDIR = @SHAREDIR@
9     DOCDIR = @DOCDIR@
10    
11     SUBDIRS = chanserv gameserv global memoserv nickserv operserv saslserv userserv
12    
13     build: html ermyth.pdf
14     ${CP} home.css html/
15    
16 pippijn 1.3 html: gendocs help lib/PodHTML.pm lib/PodHTML2.pm lib/html.tt lib/sidemenu.tt variables.yml
17 pippijn 1.1 ${PERL} gendocs
18    
19 pippijn 1.2 help: genhelp lib/PodHelp.pm lib/PodHTML.pm lib/html.tt lib/sidemenu.tt variables.yml
20 pippijn 1.1 ${PERL} genhelp
21    
22     ermyth.pdf: genpdf ermyth.tex lib/LaTeX.pm
23     ${PERL} genpdf
24     texi2pdf -q ermyth.tex
25    
26     install: build
27     $(INSTALL) -m 755 -d $(DESTDIR)$(SHAREDIR)/help
28     cd help; for i in ${SUBDIRS}; do \
29     [ -f $$i ] && $(INSTALL) -m 644 $$i $(DESTDIR)$(SHAREDIR)/help; \
30     if [ -d $$i ]; then \
31     cd $$i; \
32     $(INSTALL) -m 755 -d $(DESTDIR)$(SHAREDIR)/help/$$i; \
33     for j in *; do \
34     [ -f $$j ] && $(INSTALL) -m 644 $$j $(DESTDIR)$(SHAREDIR)/help/$$i; \
35     done; \
36     cd ..; \
37     fi; \
38     done
39     $(INSTALL) -m 755 -d $(DESTDIR)$(DOCDIR)
40     for i in man/*; \
41     do $(INSTALL) -m 644 $$i $(DESTDIR)$(DOCDIR); \
42     done
43    
44     clean:
45     ${RM} -rf help html latex man template ttdoc tthelp ttsvs
46     ${RM} -f ermyth.aux ermyth.idx ermyth.ilg ermyth.ind ermyth.log ermyth.pdf ermyth.toc ermyth.out
47    
48 pippijn 1.2 distclean:
49 pippijn 1.3 ${RM} -f Makefile .depend
50 pippijn 1.2
51     maintainer-clean: distclean
52    
53 pippijn 1.1 depend:
54    
55     upload: build
56     rsync -r html/* ruth:ermyth.schmorp.de/
57     rsync ermyth.pdf ruth:ermyth.schmorp.de/