~ubuntu-branches/ubuntu/saucy/deal.ii/saucy

« back to all changes in this revision

Viewing changes to .pc/srcdir.patch/doc/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV, Adam C. Powell, IV, Denis Barbier
  • Date: 2010-07-29 13:47:01 UTC
  • mfrom: (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100729134701-akb8jb3stwge8tcm
Tags: 6.3.1-1
[ Adam C. Powell, IV ]
* Changed to source format 3.0 (quilt).
* Changed maintainer to debian-science with Adam Powell as uploader.
* Added source lintian overrides about Adam Powell's name.
* Added Vcs info on git repository.
* Bumped Standards-Version.
* Changed stamp-patch to patch target and fixed its application criterion.
* Moved make_dependencies and expand_instantiations to a versioned directory
  to avoid shlib package conflicts.

[ Denis Barbier ]
* New upstream release (closes: #562332).
  + Added libtbb support.
  + Forward-ported all patches.
* Updates for new PETSc version, including workaround for different versions
  of petsc and slepc.
* Add debian/watch.
* Update to debhelper 7.
* Added pdebuild patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: Makefile.in 13426 2006-07-24 15:20:09Z bangerth $
 
2
 
 
3
###############################
 
4
# Configured variables
 
5
 
 
6
D     = @prefix@
 
7
include $D/common/Make.global_options
 
8
 
 
9
 
 
10
# default target. make sure validate-xrefs is only run after
 
11
# everything else (can't appear in the list of dependencies since
 
12
# would be run at the same time for parallel makes)
 
13
default: doxygen development
 
14
        @$(MAKE) validate-xrefs
 
15
 
 
16
all: default
 
17
 
 
18
 
 
19
# specific targets
 
20
doxygen:
 
21
        cd doxygen ; rm -f *.tag ; $(MAKE)
 
22
 
 
23
development:
 
24
        cd development ; $(MAKE)
 
25
 
 
26
glossary:
 
27
        cd glossary ; $(MAKE)
 
28
 
 
29
 
 
30
validate-xrefs:
 
31
        @echo "Validating cross-references in HTML files."
 
32
        $(PERL) $D/common/scripts/validate-xrefs.pl *html
 
33
        cd doxygen ; $(MAKE) validate-xrefs
 
34
        cd development ; $(MAKE) validate-xrefs
 
35
        cd publications ; $(MAKE) validate-xrefs
 
36
        cd news ; $(MAKE) validate-xrefs
 
37
        cd reports ; $(MAKE) validate-xrefs
 
38
 
 
39
 
 
40
clean:
 
41
        cd doxygen ; $(MAKE) clean
 
42
        cd development ; $(MAKE) clean
 
43
        cd glossary ; $(MAKE) clean
 
44
 
 
45
 
 
46
.PHONY: default doxygen all autogen-doc autogen-doc-all clean development validate-xrefs glossary