report: generate many images
This commit is contained in:
parent
05d830187c
commit
08036453c9
2 changed files with 38 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -18,7 +18,9 @@ all: generation tortue traceur svg
|
|||
# Generation du fichier XML des L-systèmes
|
||||
generation:
|
||||
$(CONVERTER) $(SYSTEMS).csv -o $(SYSTEMS).xml
|
||||
ifeq ($(NOCHECK),)
|
||||
$(VALIDATE) $(SYSTEMS).xsd $(SYSTEMS).xml 1>/dev/null
|
||||
endif
|
||||
|
||||
# Génération du fichier XML de la tortue + vérification
|
||||
tortue:
|
||||
|
@ -28,12 +30,16 @@ ifeq ($(and $(nom),$(n)),)
|
|||
@false
|
||||
endif
|
||||
$(SAXON) -s:$(SYSTEMS).xml -xsl:$(TORTUE).xsl -o:$(TORTUE).xml nom=$(nom) n=$(n)
|
||||
ifeq ($(NOCHECK),)
|
||||
$(VALIDATE) $(TORTUE).xsd $(TORTUE).xml 1>/dev/null
|
||||
endif
|
||||
|
||||
# Génération du fichier XML du traceur + vérification
|
||||
traceur:
|
||||
$(SAXON) -s:$(TORTUE).xml -xsl:$(TRACEUR).xsl -o:$(TRACEUR).xml
|
||||
ifeq ($(NOCHECK),)
|
||||
$(VALIDATE) $(TRACEUR).xsd $(TRACEUR).xml 1>/dev/null
|
||||
endif
|
||||
|
||||
# Génération du fichier SVG
|
||||
svg:
|
||||
|
|
Reference in a new issue