diff options
author | Björn Mattsson <Bjorn.Mattsson@bth.se> | 2020-09-14 16:29:29 +0200 |
---|---|---|
committer | Björn Mattsson <Bjorn.Mattsson@bth.se> | 2020-09-14 16:29:29 +0200 |
commit | 1eae47b8328607830b1b1d0eecbcaa682b89ac13 (patch) | |
tree | cc3cb33d6090e08227e9f54b0917865e3a97a433 /Makefile.validate | |
parent | b7ed8f8b40bcaf4c66331ca9aa404dbcb704cefb (diff) |
Moved validate to it's own file to remove dep on perl
Diffstat (limited to 'Makefile.validate')
-rw-r--r-- | Makefile.validate | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.validate b/Makefile.validate new file mode 100644 index 00000000..72afb86a --- /dev/null +++ b/Makefile.validate @@ -0,0 +1,7 @@ + +VALIDATEXML=$(patsubst swamid-2.0/%.xml,.time/%.validate,$(wildcard swamid-2.0/*.xml)) + +.time/%.validate: swamid-2.0/%.xml + @/var/www/metadata/validate.py prod $< + +validate: $(VALIDATEXML) |