-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://slps.svn.sourceforge.net/svnroot/slps@516 ab42f6e0-554d-0410-b580-99e487e6eeb2
- Loading branch information
1 parent
a6441a3
commit 203d91e
Showing
4 changed files
with
54 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
validator = ../../shared/tools/checkxml | ||
|
||
build: ldf.ldf | ||
xsltproc ../../../shared/xsl/ldf2tex.xslt ldf.ldf > ldf.tex | ||
pdflatex -interaction=batchmode ldf | ||
pdflatex -interaction=batchmode ldf | ||
|
||
ldf.ldf: | ||
../../../shared/tools/xsd2bgf ../../../shared/xsd/ldf.xsd ldf.bgf | ||
../../../topics/extraction/xsd2ldf/ldfgen.py ../../../shared/xsd/ldf.xsd ldf.bgf ldf.ldf | ||
|
||
rebuild: | ||
make clean | ||
make build | ||
|
||
clean: | ||
rm -f ldf*.bgf ldf*.ldf ldf.html ldf.fo ldf.pdf *.xbnf bgf*.bgf | ||
rm -f *.aux *.log *.toc *.tex printed_for_xldf.tmp | ||
|
||
check: | ||
ls -1 *.xbgf | xargs -n1 ${validator} xbgf | ||
ls -1 xldf/*.xldf | xargs -n1 ${validator} xldf | ||
ls -1 *.bgf | xargs -n1 ${validator} bgf | ||
ls -1 *.ldf | xargs -n1 ${validator} ldf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
validator = ../../shared/tools/checkxml | ||
|
||
build: xldf.ldf | ||
xsltproc ../../../shared/xsl/ldf2tex.xslt xldf.ldf > xldf.tex | ||
pdflatex -interaction=batchmode xldf | ||
pdflatex -interaction=batchmode xldf | ||
|
||
xldf.ldf: | ||
../../../shared/tools/xsd2bgf ../../../shared/xsd/xldf.xsd xldf.bgf | ||
../../../topics/extraction/xsd2ldf/ldfgen.py ../../../shared/xsd/xldf.xsd xldf.bgf xldf.ldf | ||
|
||
rebuild: | ||
make clean | ||
make build | ||
|
||
clean: | ||
rm -f xldf*.bgf xldf*.ldf xldf.html xldf.fo xldf.pdf *.xbnf | ||
rm -f bgf*.bgf ldf*.bgf ldf*.ldf ldf.fo ldf.pdf | ||
rm -f *.aux *.log *.toc *.tex printed_for_xldf.tmp | ||
|
||
check: | ||
ls -1 *.xbgf | xargs -n1 ${validator} xbgf | ||
ls -1 xldf/*.xldf | xargs -n1 ${validator} xldf | ||
ls -1 *.bgf | xargs -n1 ${validator} bgf | ||
ls -1 *.ldf | xargs -n1 ${validator} ldf |