File: vars_latex2html.ref

package info (click to toggle)
latex-mk 2.1-2
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 2,988 kB
  • ctags: 243
  • sloc: sh: 4,252; makefile: 165
file content (7 lines) | stat: -rw-r--r-- 853 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
env LATEX=latex LATEX_FLAGS= BIBTEX=bibtex BIBTEX_FLAGS= MAKEIDX=makeindex MAKEIDX_FLAGS= MAKEGLS=makeindex MAKEGLS_FLAGS= POST_BIBTEX_HOOK=  latex-mk  test1.tex
touch test1.html-stamp1
echo LaTeX-Mk:  Creating HTML output using latex2html
env foo=bar mylatex2html mylatex2html_flags -mkdir -dir test1.html_dir test1.tex
if [ ! -f test1.www_files ]; then touch test1.www_files ; fi
for f in `find . -type f \( -name \*.html -o -name \*.htm -o -name \*.gif  -o -name \*.png -o -name \*.css -o -name \*.pl -o -name WARNINGS  -o -name \*.scm -o -name \*.hlog \)  -newer test1.html-stamp1 -print` ; do  fn=`basename $f` ;  if grep "^$f " test1.www_files >/dev/null ; then  echo "$f already recorded" ;  else  echo "recording file $f (test1.html_dir/$fn)" ;  echo "$f test1.html_dir/$fn" >> test1.www_files ;  fi ; done
mv test1.html-stamp1 test1.html-stamp