X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/24f6490f4ba3572069619d88e053db5cb07e846c..702c84fb16a65ce0850bb99676edfbeefd656193:/doc/makefile diff --git a/doc/makefile b/doc/makefile index 1287cfc5f..5f774b825 100644 --- a/doc/makefile +++ b/doc/makefile @@ -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