
php-convertGuiXml-test_perms:
	php convertGuiXml.php

convertGuiXmlToFiltersXML-test_perms:
	xsltproc convertGuiXmlToFiltersXML.xsl default_db/test_perms.gui.xml | xmllint --format -

convertGuiXmlToFiltersPHP-test_perms:
	xsltproc convertGuiXmlToFiltersPHP.xsl default_db/test_perms.gui.xml |grep -v '^[[:space:]]*$$'

convertGuiXmlToFiltersPHP-test_perms-no-dbg:
	xsltproc convertGuiXmlToFiltersPHP.xsl default_db/test_perms.gui.xml |grep -v '^[[:space:]]*$$'|grep -v '^#'

convertGuiXmlToFiltersPHP-test_perms-save:
	xsltproc convertGuiXmlToFiltersPHP.xsl default_db/test_perms.gui.xml |grep -v '^[[:space:]]*$$' > tmp.test_perms.php
	echo "cat tmp.test_perms.php"
	cat tmp.test_perms.php

all: convertGuiXmlToFiltersPHP-test_perms

clean:
	rm tmp.* class.*.php


