1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: Disable latex2html in Makefile
We only build the PDF manuals for now.
Author: Carsten Leonhardt <leo@debian.org>
Last-Update: 2024-11-23
Forwarded: not-needed
--- a/Makefile
+++ b/Makefile
@@ -178,7 +178,7 @@ all_dirs = ${de_dirs} ${en_dirs} ${es_di
en: all
-all: $(VERSION_TEX) latex2html pdf-manuals html-manuals
+all: $(VERSION_TEX) pdf-manuals
$(AT)echo ""
$(AT)echo "All manuals built ..."
$(AT)echo ""
@@ -297,8 +297,7 @@ clean:
realclean: clean
-distclean: $(LATEX2HTMLMAKEFILE) clean
- $(AT)(cd $(BLATEX2HTMLDIR) ; make $@)
+distclean: clean
$(AT)rm -rf $(BBINDIR)
$(AT)rm -rf $(BTEXDIR)
$(AT)$(RMF) -r CVS html-manual/CVS home-page/CVS techlogs/CVS
|