Makefile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Wed, 28 Apr 2021 23:40:51 +0200
changeset 78 0b05c2bce9e4
parent 77 5b23278ed81f
permissions -rw-r--r--
Fix expension of macros in pointers with default values.

For example :

in xsl decl widget_class(%name, *clsname="%nameWidget", match="widget[@type='%name']", mode="widget_class") alias template {
| class `text **clsname` extends Widget{
content;
| }
};

widget_class('Input');

gives now :

<xsl:template match="widget[@type='Input']" mode="widget_class">
<xsl:text>class </xsl:text>
<xsl:text>InputWidget</xsl:text>
<xsl:text> extends Widget{
</xsl:text>
<xsl:text>}
</xsl:text>
</xsl:template>

Without the fix, <xsl:text>InputWidget</xsl:text> would be <xsl:text>%nameWidget</xsl:text>
YML_PATH=
YML2C=yml2c
PKGVER=$(shell python setup.py -V)

all: homepage

homepage: index.html features.html yslt.html toolchain.html programming.html hello.html

update: homepage format.css gpl-2.0.txt
	rsync -avC *.html format.css *.yhtml2 gpl-2.0.txt samples dragon:fdik.org/yml2/

update-all: update yml2c yml2.py pyPEG.py backend.py yml2proc
	if test -z $(VERSION) ; then echo VERSION not set ; exit 1 ; fi
	rsync -avC *.py yml2 yml2c Makefile yml2proc xml2yml.ysl2 standardlib.ysl2 samples dragon:fdik.org/yml2/
	ssh dragon bash -c "cd ; cd fdik.org/; tar cvjf yml-$(VERSION).tar.bz2 yml2/{*.py,*.yml2,*.yhtml2,format.css,gpl-2.0.txt,yml2,yml2c,Makefile,yml2proc,xml2yml.ysl2,standardlib.ysl2,samples} ; rm yml2.tar.bz2 ; ln -s yml-$(VERSION).tar.bz2 yml2.tar.bz2"

%.html: %.en.yhtml2 heading.en.yhtml2 homepage.en.yhtml2
	$(YML2C) $< -o $@

clean:
	rm -f *.html *.pyc *.pyo */*.pyc */*.pyo
	rm -rf *.egg-info


dist: dist/yml-$(PKGVER).tar.gz

dist/yml-$(PKGVER).tar.gz:
	python setup.py sdist

install:
	pip install .
	rm setup.py