Skip to content

Commit

Permalink
Makefile: remove .SILENT, make the targets loud
Browse files Browse the repository at this point in the history
The Makefile was set globally to silent, which caused the failing
commands to be *not* displayed. For example

flo@neo-pc xeps-xsf $ make html
make: *** [Makefile:112: build/xep-0001.html] Error 1

Removing this provides usefull information about which command failed:

flo@neo-pc xeps-xsf $ make html
xmllint --nonet --noout --noent --loaddtd --valid "xep-0001.xml"
! xmllint --nonet --noout --noent --loaddtd --xpath "//img/@src[not(starts-with(., 'data:'))]" xep-0001.xml 2>/dev/null && true
make: *** [Makefile:110: build/xep-0001.html] Error 1
  • Loading branch information
Flowdalic committed Dec 11, 2023
1 parent 7c5f3a4 commit 70f41c0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
.SILENT:

OUTDIR?=build
REFSDIR?=$(OUTDIR)/refs
EXAMPLESDIR?=$(OUTDIR)/examples
Expand Down

0 comments on commit 70f41c0

Please sign in to comment.