From ed1805b1ac268cddd2f068438b6b0e8fbb2d1fa5 Mon Sep 17 00:00:00 2001 From: mattias Date: Sat, 30 Oct 2021 10:39:34 +0200 Subject: [PATCH] docs: gitignore --- docs/.gitignore | 2 ++ docs/html/.gitignore | 1 + docs/html/build_lcl_chm.sh | 28 ---------------------------- 3 files changed, 3 insertions(+), 28 deletions(-) create mode 100644 docs/.gitignore create mode 100644 docs/html/.gitignore delete mode 100755 docs/html/build_lcl_chm.sh diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000000..1e3c4c5c83 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,2 @@ +lcl +lazutils diff --git a/docs/html/.gitignore b/docs/html/.gitignore new file mode 100644 index 0000000000..f2e2433a50 --- /dev/null +++ b/docs/html/.gitignore @@ -0,0 +1 @@ +build_lcl_docs diff --git a/docs/html/build_lcl_chm.sh b/docs/html/build_lcl_chm.sh deleted file mode 100755 index a5e0594eb0..0000000000 --- a/docs/html/build_lcl_chm.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env bash -# basic script to do an lcl.chm build. Marco van de Voort dec 2011 - -# assumes a fpcdocs checkout where "fixdocs.sh" has been successfully run. -# on 1.7GHz Core2 laptop single thread 6:26 minutes. Don't be impatient :-) - -set -e - -# set to path to FPC docs dir. Default assume it is on the same level as the lazarus checkout -if [ -z "$FPCDocDir" ]; then - FPCDocDir=../../../fpcdocs -fi -FPCDocDirEXP=$(cd "$FPCDocDir" ; pwd) - -if [ -d "$FPCDocDirEXP" ] -then -echo FPCDOCS dir is $FPCDocDirEXP -else -echo FPCDOCS dir $FPCDocDir expanded to $FPCDocDirEXP and was not found. -exit 1 -fi - -export HTMLFMT=chm -bash build_lazutils_html.sh fpdoc `pwd`/locallclfooter.xml $FPCDocDirEXP 1>lazutilsoutput.log 2>lazutilserror.log -bash build_lcl_html.sh fpdoc `pwd`/locallclfooter.xml $FPCDocDirEXP 1>lcloutput.log 2>lclerror.log - -# end. -