From af12489ec68de938e84a6fa4af9bbc2851e6f97a Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 11 Jan 2024 19:34:59 -0800 Subject: [PATCH] Expand indent directive --- Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b027c2b8..06316db9 100644 --- a/Makefile +++ b/Makefile @@ -130,12 +130,15 @@ uninstall : tags : ctags -R * -indent : gc.c runtime.c ffi.c mstreams.c $(HEADER_DIR)/*.h - $(INDENT_CMD) gc.c - $(INDENT_CMD) runtime.c +indent : gc.c runtime.c ffi.c hashset.c mstreams.c ck-polyfill.c ck-polyfill.h $(HEADER_DIR)/*.h + $(INDENT_CMD) $(HEADER_DIR)/*.h + $(INDENT_CMD) ck-polyfill.c + $(INDENT_CMD) ck-polyfill.h $(INDENT_CMD) ffi.c + $(INDENT_CMD) gc.c + $(INDENT_CMD) hashset.c $(INDENT_CMD) mstreams.c - $(INDENT_CMD) $(HEADER_DIR)/*.h + $(INDENT_CMD) runtime.c # This is a test directive used to test changes to a SLD file # EG: make sld SLDPATH=scheme/cyclone SLD=macros