Browse Source

Add windows script to perform "make" and "make clean" commands

remotes/origin/translate_notes
Romain Goffe 13 years ago
parent
commit
54acca0d11
  1. 2
      clean.bat
  2. 12
      make.bat

2
clean.bat

@ -0,0 +1,2 @@
Rem manually performs "make clean"
del *.aux *.d *.toc *.out *.log *.nav *.snm *.sbx *.sxd

12
make.bat

@ -0,0 +1,12 @@
Rem build tex file from songbook file
songbook.py --songbook=%1.sb --output=%1.tex
Rem 1st pdf compilation
pdflatex %1.tex
Rem build indexes
songbook-makeindex.py %1_title.sxd > %1_title.sbx
songbook-makeindex.py %1_auth.sxd > %1_auth.sbx
Rem 2nd compilation to include indexes
pdflatex %1.tex
Loading…
Cancel
Save