blob: 34b3c78daec1f5c7e108d53606ce014fd4c8c0d1 (
plain)
1
2
3
4
5
6
7
8
|
all: .update
dbxml.xml: LIKAT\ Publications.xml *.xsl *.sed Makefile
xsltproc convert-style-to-html.xsl "LIKAT Publications.xml" | xsltproc endnote-to-dbxml.xsl - | sed -f fix-empty-tags.sed > dbxml.xml
.update: dbxml.xml
mysql -v -utypo3 -ptypo3 typo3 < update.sql
touch .update
|