diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,8 +1,8 @@ -KEY=/opt/swamid-credentials/swamid-signer.key -CERT=/opt/swamid-credentials/swamid-signer.crt -PASS=$(shell test -f /opt/swamid-credentials/swamid-signer-pass.txt && cat /opt/swamid-credentials/swamid-signer-pass.txt) -DEST=/opt/published-metadata +KEY := /opt/swamid-credentials/swamid-signer.key +CERT := /opt/swamid-credentials/swamid-signer.crt +PASS := $(shell test -f /opt/swamid-credentials/swamid-signer-pass.txt && cat /opt/swamid-credentials/swamid-signer-pass.txt) +DEST := /opt/published-metadata SRCDIRS=swamid-2.0 DAYS:=15 @@ -91,7 +91,7 @@ schematest: @for x in $(MXML); do test=`xmllint --xinclude --nowarning --noout --path schema --schema schema.xsd $$x 2>&1`; rc=$$?; echo $$test | sed 's/fails to validate/[1;31m&[0m/;s/validates/[1;32m&[0m/'; if [ $$rc -gt 0 ]; then exit 1; fi; done clean: - @rm -f *.xml *.tbs *.n + @rm -f *.xml *.tbs *.n *.sig tidy: @for x in `find $(SRCDIRS) -name \*.xml`; do xsltproc xslt/clean-entitydescriptor.xsl $$x > $$x.c && mv $$x.c $$x; done |