summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBjörn Mattsson <Bjorn.Mattsson@bth.se>2020-09-14 16:29:29 +0200
committerBjörn Mattsson <Bjorn.Mattsson@bth.se>2020-09-14 16:29:29 +0200
commit1eae47b8328607830b1b1d0eecbcaa682b89ac13 (patch)
treecc3cb33d6090e08227e9f54b0917865e3a97a433 /Makefile
parentb7ed8f8b40bcaf4c66331ca9aa404dbcb704cefb (diff)
Moved validate to it's own file to remove dep on perl
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 32182668..f5d67ded 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,6 @@ all: clean dependencies test sign clean web
MXML=$(shell echo *.mxml)
SWAMIDXML=$(patsubst swamid-2.0/%.xml,.time/%.time,$(wildcard swamid-2.0/*.xml))
-VALIDATEXML=$(patsubst swamid-2.0/%.xml,.time/%.validate,$(wildcard swamid-2.0/*.xml))
TIMEFILES=$(patsubst %.time,.xml/swamid-2.0/%.time,$(wildcard .time/*.time))
sign: swamid upstream projects
@@ -313,8 +312,3 @@ commit: tidy test
@echo "Checking for not committed files in swamid-2.0/" ; if git status --porcelain --ignored | awk '{print $$2}' | grep "^swamid-2.0/" | sed 's/^/ /' | grep . ; then echo "Not committed files in swamid-2.0/, aborting" ; exit 1 ; fi
@echo ; echo -n "Run 'git push'? [Y/n] " ; read x ; case $$x in "Y"|"y"|"") ;; *) exit 1 ;; esac
@git push
-
-.time/%.validate: swamid-2.0/%.xml
- @/var/www/metadata/validate.py prod $<
-
-validate: $(VALIDATEXML)