X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=Makefile;h=fbdf16d6abfaa973a7cba008948cf9c1ffaa4aad;hb=ecbd8cb50b22a3e35330a78573e16a3dfabe48d1;hp=de66bb7407151d1c12bb9a530442973d726503c2;hpb=d653dcd28efa770dec9ee2dc8cbe7eb8eedd751b;p=mlt diff --git a/Makefile b/Makefile index de66bb74..fbdf16d6 100644 --- a/Makefile +++ b/Makefile @@ -35,10 +35,8 @@ install: list='$(SUBDIRS)'; \ for subdir in $$list; do \ $(MAKE) DESTDIR=$(DESTDIR) -C $$subdir $@ || exit 1; \ - done; \ -# if test -z "$(DESTDIR)"; then \ -# /sbin/ldconfig -n "$(DESTDIR)$(libdir)" 2> /dev/null || true; \ -# fi + done + cp -R presets "$(DESTDIR)$(prefix)/share/mlt" uninstall: rm -f "$(DESTDIR)$(bindir)"/mlt-config @@ -53,3 +51,9 @@ uninstall: dist: git archive --format=tar --prefix=mlt-$(version)/ v$(version) | gzip >mlt-$(version).tar.gz + +validate-yml: + for file in `find src/modules -type f -name \*.yml`; do \ + echo "validate: $$file"; \ + kwalify -f src/framework/metaschema.yaml $$file || exit 1; \ + done