summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index afa79ed..8dc73e2 100644
--- a/Makefile
+++ b/Makefile
@@ -92,10 +92,18 @@ cube: $(EXAMPLES_DIR)/cube.c $(SHARED_LIB) $(SHADER_OUT_DIR)/cube.air $(METAL_LI
format:
clang-format -i $(FORMAT_FILES)
-.PHONY: tidy
+.PHONY: format-check
+format-check:
+ clang-format --dry-run -Werror $(FORMAT_FILES)
+
+.PHONY: tidy-fix
tidy:
clang-tidy -fix $(SRCS) $(EXAMPLES_DIR)/*.c -- $(CFLAGS)
+.PHONY: tidy-check
+tidy-check:
+ clang-tidy $(SRCS) $(EXAMPLES_DIR)/*.c -- $(CFLAGS)
+
.PHONY: clean
clean:
rm -rf $(BUILD_DIR)