-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from mjakubicek/master
some structural and technical fixes
- Loading branch information
Showing
74 changed files
with
207 additions
and
146 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 |
---|---|---|
@@ -1,15 +1,21 @@ | ||
include Makefile.dep | ||
|
||
html: dmlex-v1.0-wd01.html | ||
|
||
pdf: dmlex-v1.0-wd01.pdf | ||
|
||
dmlex-v1.0-wd01.pdf: dmlex-v1.0-wd01.fo | ||
fop -pdf $@ -fo $< | ||
fop -c stylesheets/fop.xconf -pdf $@ -fo $< | ||
|
||
dmlex-v1.0-wd01.fo: dmlex-v1.0-wd01.xml | ||
xsltproc --xinclude -o $@ stylesheets/oasis-specification-fo-a4.xsl $< | ||
|
||
dmlex-v1.0-wd01.html: dmlex-v1.0-wd01.xml | ||
xsltproc --xinclude -o $@ stylesheets/oasis-specification-html.xsl $< | ||
|
||
dmlex-v1.0-wd01.xml: dmlex.xml $(shell xmlstarlet sel -T -t -m //xi:include/@href -v . -n dmlex.xml) | ||
dmlex-v1.0-wd01.xml: dmlex.xml $(SOURCE_XML) | ||
./merge.sh | ||
|
||
Makefile.dep: dmlex.xml $(SOURCE_XML) makedep.sh | ||
echo -n "SOURCE_XML=" > $@ | ||
./makedep.sh >> $@ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
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,16 @@ | ||
#!/bin/sh | ||
DEPS=`xmlstarlet sel -T -t -m //xi:include/@href -v . -n dmlex.xml` | ||
OLDDEPS=$DEPS | ||
while true; do | ||
NEWDEPS= | ||
for DEP in $OLDDEPS; do | ||
INCLUDES=`xmlstarlet sel -T -t -m //xi:include/@href -v . -n $DEP` | ||
for INCL in $INCLUDES; do | ||
NEWDEPS="$NEWDEPS `dirname $DEP`/$INCL" | ||
done | ||
done | ||
[ -z "$NEWDEPS" ] && break; | ||
DEPS="$DEPS $NEWDEPS" | ||
OLDDEPS="$NEWDEPS" | ||
done | ||
echo $DEPS |
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
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
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
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
Oops, something went wrong.