have make sort be less noisy
adding the @ at the start of the two lines causes make to not echo out the command it is running. Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
parent
09eee8e0ff
commit
435ee6ea79
4
Makefile
4
Makefile
@ -17,8 +17,8 @@ validate: $(XMLFILES) comps.rng
|
||||
done; exit $$RES
|
||||
|
||||
sort:
|
||||
# Run xsltproc on each xml.in file and exit with non-zero if any sorting fails
|
||||
RES=0; for f in $(XMLINFILES); do \
|
||||
@# Run xsltproc on each xml.in file and exit with non-zero if any sorting fails
|
||||
@RES=0; for f in $(XMLINFILES); do \
|
||||
xsltproc --novalid -o $$f comps-cleanup.xsl $$f; \
|
||||
RES=$$(($$RES + $$?)); \
|
||||
done; exit $$RES
|
||||
|
Loading…
Reference in New Issue
Block a user