diff options
author | Leif Johansson <leifj@sunet.se> | 2011-09-20 18:01:06 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-09-20 18:01:06 +0200 |
commit | a68a12b04f2d02e2594e9d20c91def37eb8b31f7 (patch) | |
tree | 9532d776cddc5fb65305a0a0c3a4c8ad268d1374 /NewMakefile | |
parent | 0d8a11db11719dd47a86108ef0d4a39261b0d7eb (diff) |
renamed mf
Diffstat (limited to 'NewMakefile')
-rw-r--r-- | NewMakefile | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/NewMakefile b/NewMakefile deleted file mode 100644 index 4746ea02..00000000 --- a/NewMakefile +++ /dev/null @@ -1,89 +0,0 @@ - -KEY=/opt/swamid-credentials/swamid-signer.key -CERT=/opt/swamid-credentials/swamid-signer.crt -PASS=$(shell cat /opt/swamid-credentials/swamid-signer-pass.txt) -DEST=/opt/published-metadata - -all: update clean sign - -update: -# @svn up -q - -keys: $(KEY) $(CERT) - -MXML=$(shell echo *.mxml) - -sign: keys swamid nya nya-testing swamid-testing swamid-testing-idp swamid-kalmar swamid-kalmar-testing swamid-edugain-testing swamid-ki-sll swamid-fiv-test - -swamid-externals: swamid-externals1 swamid-externals2 - -swamid-externals1: - @scripts/aggregate.sh swamid-externals-1.0 - -swamid-externals2: - @scripts/aggregate.sh swamid-externals-2.0 - -swamid-interfederations: swamid-interfederations1 swamid-interfederations2 - -swamid-interfederations1: - @scripts/aggregate.sh swamid-interfederations-1.0 - -swamid-interfederations2: - @scripts/aggregate.sh swamid-interfederations-2.0 - -swamid: swamid1 swamid2 - -swamid1: - @saml-md-tool swamid-1.0 update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-1.0.xml && cp swamid-1.0.xml $(DEST) - #@test -s swamid-1.0-unsigned.xml && cp swamid-1.0-unsigned.xml $(DEST) - -swamid2: swamid-backport-1.0.xml - @saml-md-tool swamid-2.0 update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-2.0.xml && cp swamid-2.0.xml $(DEST) - -swamid-backport-1.0.xml: - @xsltproc --xinclude xslt/extract-non-idp.xslt swamid-1.0.mxml > swamid-backport-1.0.xml - -nya: - @saml-md-tool nya-1.0 update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s nya-1.0.xml && cp nya-1.0.xml $(DEST) - #@test -s nya-1.0-unsigned.xml && cp nya-1.0-unsigned.xml $(DEST) - -nya-testing: - @saml-md-tool nya-1.0-testing update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s nya-1.0-testing.xml && cp nya-1.0-testing.xml $(DEST) - -swamid-testing: - @saml-md-tool swamid-testing-1.0 update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-testing-1.0.xml && cp swamid-testing-1.0.xml $(DEST) - -swamid-testing-idp: - @saml-md-tool swamid-testing-idp-1.0 update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-testing-idp-1.0.xml && cp swamid-testing-idp-1.0.xml $(DEST) - -swamid-edugain-testing: - @saml-md-tool swamid-edugain-testing-1.0 update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-edugain-testing-1.0.xml && cp swamid-edugain-testing-1.0.xml $(DEST) - -swamid-kalmar: - @saml-md-tool swamid-kalmar-1.0 update --days=2 --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-kalmar-1.0.xml && cp swamid-kalmar-1.0.xml $(DEST) - -swamid-kalmar-testing: - @saml-md-tool swamid-kalmar-testing-1.0 update --days=2 --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-kalmar-testing-1.0.xml && cp swamid-kalmar-testing-1.0.xml $(DEST) - -swamid-ki-sll: - @saml-md-tool swamid-ki-sll-1.0 update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-ki-sll-1.0.xml && cp swamid-ki-sll-1.0.xml $(DEST) - -swamid-fiv-test: - @saml-md-tool swamid-fiv-test update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) - @test -s swamid-fiv-test.xml && cp swamid-fiv-test.xml $(DEST) - -test: swamid-backport-1.0.xml - @for x in $(MXML); do xmllint --xinclude --nowarning --noout --path schema --schema schema.xsd $$x; done - -clean: - @rm -f *.xml |