Skip to content

Commit

Permalink
Makefile: add pretty-printing to make output
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzguido committed Aug 21, 2024
1 parent f1ca5c0 commit 50191a3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,21 @@ bench:
# Regenerate and accept expected output tests. Should be manually
# reviewed before checking in.
.PHONY: output
output: output-error-messages output-ide-emacs output-ide-lsp output-bug-reports
output: \
output-error-messages \
output-pretty-printing \
output-ide-emacs \
output-ide-lsp \
output-bug-reports

.PHONY: output-error-messages
output-error-messages:
+$(Q)$(MAKE) -C tests/error-messages accept

.PHONY: output-pretty-printing
output-pretty-printing:
+$(Q)$(MAKE) -C tests/prettyprinting accept

.PHONY: output-ide-emacs
output-ide-emacs:
+$(Q)$(MAKE) -C tests/ide/emacs accept
Expand Down

0 comments on commit 50191a3

Please sign in to comment.