aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 5526fa6d..b176c5f6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -872,13 +872,21 @@ iwyu:
_iwyu: clean $(PROGRAMS)
.PHONY: iwyu _iwyu
-# Lint the code.
+# Lint the code. This only deals with C++ files.
lint:
build_tools/lint.fish $(CXX) $(CXXFLAGS)
lint-all:
build_tools/lint.fish $(CXX) --all $(CXXFLAGS)
.PHONY: lint lint-all
+# Run the code through the style refomatter. This handles both C++ files and
+# fish scripts (*.fish).
+style:
+ build_tools/style.fish
+style-all:
+ build_tools/style.fish --all
+.PHONY: lint lint-all
+
#
# Cleanup targets
#