]> git.saurik.com Git - apt.git/blobdiff - doc/makefile
* apt-pkg/deb/dpkgpm.cc:
[apt.git] / doc / makefile
index 1287cfc5f0bf6a8185c8dcb2f66217ef238de898..5f774b82504bd2d1a9218f36e6174c219f456039 100644 (file)
@@ -1,7 +1,7 @@
 # -*- make -*-
 BASE=..
 SUBDIR=doc
-SUBDIRS= fr ja pt_BR es
+SUBDIRS= fr ja pl pt_BR es
 
 # Bring in the default rules
 include ../buildlib/defaults.mak
@@ -13,8 +13,9 @@ include $(DEBIANDOC_H)
 
 # XML man pages
 SOURCE = apt-cache.8 apt-get.8 apt-cdrom.8 apt.conf.5 sources.list.5 \
-         apt-config.8 apt_preferences.5 vendors.list.5 \
-         apt-sortpkgs.1 apt-ftparchive.1 apt-extracttemplates.1
+         apt-config.8 apt_preferences.5  \
+         apt-sortpkgs.1 apt-ftparchive.1 apt-extracttemplates.1 \
+        apt-key.8 apt-secure.8
 INCLUDES = apt.ent      
 include $(XML_MANPAGE_H)
 
@@ -25,7 +26,7 @@ TARGET = binary
 include $(COPY_H)
 
 #.PHONY: headers library clean veryclean all binary program doc doc.pt_BR doc.fr
-doc: doc.fr doc.ja doc.pt_BR doc.es
+doc: doc.fr doc.ja doc.pl doc.pt_BR doc.es
 
 doc.fr: %.fr:
        $(MAKE) -C fr $*
@@ -38,3 +39,27 @@ doc.es: %.es:
 
 doc.ja: %.ja:
        $(MAKE) -C ja $*
+
+doc.pl: %.pl:
+       $(MAKE) -C pl $*
+
+ifdef DOXYGEN
+DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) )
+
+clean: doxygen-clean
+
+doxygen-clean:
+       rm -fr $(BUILD)/doc/doxygen
+       rm -f $(BUILD)/doc/doxygen-stamp
+
+$(BUILD)/doc/Doxyfile: Doxyfile.in
+       (cd $(BUILD) && ./config.status doc/Doxyfile)
+
+$(BUILD)/doc/doxygen-stamp: $(DOXYGEN_SOURCES) $(BUILD)/doc/Doxyfile
+       rm -fr $(BUILD)/doc/doxygen
+       $(DOXYGEN) $(BUILD)/doc/Doxyfile
+       touch $(BUILD)/doc/doxygen-stamp
+
+doc: $(BUILD)/doc/doxygen-stamp
+
+endif