~ubuntu-branches/ubuntu/gutsy/gimp/gutsy-proposed

« back to all changes in this revision

Viewing changes to devel-docs/libgimpwidgets/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-12-20 23:31:12 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20071220233112-90avvl7armc39ny9
Tags: 2.4.2-0ubuntu0.7.10
* Update to Gimp's 2.4.2 release, as opposed to keeping 2.4.0rc3 in Gutsy,
  on the off chance that this fixes some bugs. (LP: #157642)
* Bump shlibs, just in case.

Show diffs side-by-side

added added

removed removed

Lines of Context:
520
520
        $(DOC_MODULE).prerequisites \
521
521
        $(DOC_MODULE).signals
522
522
 
523
 
CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS)
 
523
REPORT_FILES = \
 
524
        $(DOC_MODULE)-undocumented.txt \
 
525
        $(DOC_MODULE)-undeclared.txt \
 
526
        $(DOC_MODULE)-unused.txt
 
527
 
 
528
CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS)
524
529
all: all-am
525
530
 
526
531
.SUFFIXES:
638
643
 
639
644
distclean: distclean-am
640
645
        -rm -f Makefile
641
 
distclean-am: clean-am distclean-generic distclean-libtool
 
646
distclean-am: clean-am distclean-generic distclean-libtool \
 
647
        distclean-local
642
648
 
643
649
dvi: dvi-am
644
650
 
681
687
 
682
688
.PHONY: all all-am all-local check check-am clean clean-generic \
683
689
        clean-libtool clean-local dist-hook distclean \
684
 
        distclean-generic distclean-libtool distdir dvi dvi-am html \
685
 
        html-am info info-am install install-am install-data \
686
 
        install-data-am install-data-local install-exec \
 
690
        distclean-generic distclean-libtool distclean-local distdir \
 
691
        dvi dvi-am html html-am info info-am install install-am \
 
692
        install-data install-data-am install-data-local install-exec \
687
693
        install-exec-am install-info install-info-am install-man \
688
694
        install-strip installcheck installcheck-am installdirs \
689
695
        maintainer-clean maintainer-clean-generic \
728
734
tmpl.stamp: tmpl-build.stamp
729
735
        @true
730
736
 
 
737
tmpl/*.sgml:
 
738
        @true
 
739
 
731
740
#### xml ####
732
741
 
733
742
sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files)
745
754
html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
746
755
        @echo 'gtk-doc: Building HTML'
747
756
        @-chmod -R u+w $(srcdir)
748
 
        rm -rf $(srcdir)/html 
 
757
        rm -rf $(srcdir)/html
749
758
        mkdir $(srcdir)/html
750
759
        cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
751
760
        test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
752
 
        @echo 'gtk-doc: Fixing cross-references' 
 
761
        @echo 'gtk-doc: Fixing cross-references'
753
762
        cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
754
763
        touch html-build.stamp
755
764
 
759
768
        rm -f *~ *.bak
760
769
        rm -rf .libs
761
770
 
 
771
distclean-local:
 
772
        cd $(srcdir) && \
 
773
          rm -rf xml $(REPORT_FILES) \
 
774
                 $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
 
775
 
762
776
maintainer-clean-local: clean
763
 
        cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
 
777
        cd $(srcdir) && rm -rf xml html
764
778
 
765
779
install-data-local:
766
780
        installfiles=`echo $(srcdir)/html/*`; \
774
788
          done; \
775
789
          echo '-- Installing $(srcdir)/html/index.sgml' ; \
776
790
          $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \
 
791
          if test `which gtkdoc-rebase` != ""; then \
 
792
        gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \
 
793
          fi \
777
794
        fi
778
795
 
779
796
uninstall-local:
794
811
        -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
795
812
        -cp $(srcdir)/xml/*.xml $(distdir)/xml
796
813
        cp $(srcdir)/html/* $(distdir)/html
797
 
        if test -f $(srcdir)/$(DOC_MODULE).types; then \
798
 
          cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \
799
 
        fi
 
814
        cp $(srcdir)/$(DOC_MODULE).types $(distdir)/
 
815
        cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/
 
816
        cd $(distdir) && rm -f $(DISTCLEANFILES)
 
817
        -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html
800
818
 
801
819
.PHONY : dist-hook-local docs
802
820
# Tell versions [3.59,3.63) of GNU make to not export all variables.