Add a Makefile rule to export the findings as JSON

This commit is contained in:
Pierre Pronchery 2020-03-30 17:36:33 +02:00
parent b49ae659ea
commit a423b7ef6a

View File

@ -39,4 +39,7 @@ distclean: clean
export-csv: sample-report/source/report.xml
@$(XSLTPROC) "xslt/findings2csv.xsl" "sample-report/source/report.xml"
.PHONY: clean distclean export-csv
export-json: sample-report/source/report.xml
@$(XSLTPROC) "xslt/findings2json.xsl" "sample-report/source/report.xml"
.PHONY: clean distclean export-csv export-json