Skip to content

Commit

Permalink
feat: Add target to find and display Makefile contents
Browse files Browse the repository at this point in the history
  • Loading branch information
valter-silva-au committed Mar 2, 2024
1 parent 15fd564 commit a200131
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/make/make/helpers.mk
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,9 @@ help/generate-no-colour:
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST) | sort -u
@printf "\n"

.PHONY: fix/makefiles
## Find all Makefile files and display their contents
fix/makefiles:
@find . -name "Makefile" -exec cat -e -t -v {} \;
@find . -name "*.mk" -exec cat -e -t -v {} \;

0 comments on commit a200131

Please sign in to comment.