Skip to content
Snippets Groups Projects
Commit 07a499fc authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

improve check for missing styles in lammps.book

parent 1c994bda
No related branches found
No related tags found
No related merge requests found
......@@ -123,9 +123,9 @@ pdf: utils/txt2html/txt2html.exe
cd ..; \
../utils/txt2html/txt2html.exe -b *.txt; \
htmldoc --batch lammps.book; \
for s in `echo *.txt | sed -e 's,\.txt,\.html,g'` ; \
do grep -q $$s lammps.book || \
echo doc file $$s missing in src/lammps.book; done; \
for s in `echo *.txt | sed -e 's/ \(pairs\|bonds\|angles\|dihedrals\|impropers\|commands_list\|fixes\|computes\).txt/ /g' | sed -e 's,\.txt,\.html,g'` ; \
do grep -q ^$$s lammps.book || \
echo WARNING: doc file $$s missing in src/lammps.book; done; \
rm *.html; \
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment