summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 9d4cda2a..6e2e5f0a 100644
--- a/Makefile
+++ b/Makefile
@@ -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/&/;s/validates/&/'; 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