Add a Makefile rule to export the findings as CSV

This commit is contained in:
Pierre Pronchery 2020-03-30 17:35:58 +02:00
parent 5fecb0dd44
commit 13f6bfd8c6

View File

@ -8,6 +8,7 @@ MV = mv -f
RM = rm -f
UNZIP = unzip
WGET = wget
XSLTPROC= xsltproc --nonet --xinclude
all: $(TARGETS)
@ -35,4 +36,7 @@ clean:
distclean: clean
$(RM) -- $(TARGETS)
.PHONY: clean distclean
export-csv: sample-report/source/report.xml
@$(XSLTPROC) "xslt/findings2csv.xsl" "sample-report/source/report.xml"
.PHONY: clean distclean export-csv