~ubuntu-branches/ubuntu/wily/libhtp/wily

« back to all changes in this revision

Viewing changes to docs/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Pierre Chifflier
  • Date: 2014-04-02 19:02:35 UTC
  • mto: (10.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20140402190235-r6fdkd2h6uqwh4tf
Tags: upstream-0.5.10
ImportĀ upstreamĀ versionĀ 0.5.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CLEANFILES = *.pdf
 
2
 
 
3
clean-local:
 
4
        rm -rf doxygen
 
5
 
 
6
doxygen: doxygen.conf $(DOXYGEN_DEPS)
 
7
        @if test -n "$(DOXYGEN)"; then \
 
8
         $(DOXYGEN) $<; \
 
9
        else \
 
10
         echo "You need doxygen installed to build the docs."; \
 
11
        fi;
 
12
 
 
13
doxygen-pdf: doxygen doxygen.pdf
 
14
 
 
15
doxygen.pdf: doxygen
 
16
        (cd doxygen/latex && make refman.pdf) && cp doxygen/latex/refman.pdf doxygen.pdf
 
17
 
 
18
.PHONY: doxygen-pdf