forked from hbeyer/selbstzeugnisse-hab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
42 lines (33 loc) · 1.41 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.PHONY: server
server:
php -S 127.0.0.1:9999 -t public public/index.php
.PHONY: mets
mets:
calabash -o result=resources/daten/repertorium/mets.xml resources/xproc/repertorium/mets.xpl
.PHONY: solr
solr:
calabash resources/xproc/repertorium/solr.xpl
calabash -i resources/mets.xml resources/xproc/fulltext/fulltext.xpl
.PHONY: normdaten
normdaten:
calabash -i resources/daten/edition/register/orte.xml resources/xproc/normdaten.xpl
calabash -i resources/daten/edition/register/personen.xml resources/xproc/normdaten.xpl
calabash -i resources/daten/repertorium/register/orte.xml resources/xproc/normdaten.xpl
calabash -i resources/daten/repertorium/register/personen.xml resources/xproc/normdaten.xpl
.PHONY: linkmap
linkmap:
calabash -i resources/daten/edition/diarium/diarium.xml -o resources/daten/edition/diarium/linkmap.xml resources/xproc/edition/linkmap.xpl
.PHONY: deploy
deploy:
robocopy .\\ \\\\devserver\hosting\development\2015\selbstzeugnisse.hab.de /MIR /XD .git /XD tmp
.PHONY: sitemap
sitemap:
calabash -i resources/mets.xml -o public/sitemap.xml resources/xproc/sitemap.xpl
.PHONY: repository
repository:
calabash -o public/repertorium/repository.xml resources/xproc/repertorium/oais.xpl
.PHONY: beacon
beacon: linkmap
transform -o:public/beacon.txt -xsl:resources/xproc/edition/beacon.xsl resources/daten/edition/diarium/linkmap.xml
.PHONY: publish
publish: mets linkmap sitemap repository beacon solr deploy