aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2024-09-18 13:30:11 +0100
committerBlake Romero <blake@blkrom.com>2024-10-30 10:13:26 +0000
commit077ee9c753d2d1dc1a7fc4ca9fcadf9131e3e81e (patch)
treef44d6faf80aeaf6472ca39f6e450a432da5f29b2
parent45c1fbf4dfe5c7a7243b625eb8a600bdce6c748f (diff)
Add Makefile debug info target
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d20a7d3..35e4f02 100644
--- a/Makefile
+++ b/Makefile
@@ -36,3 +36,8 @@ test: $(TESTBINS)
.PHONY: clean
clean:
rm -r $(BIN) $(OBJ)
+
+.PHONY: info
+info:
+ @printf "OBJS: %s\n" $(OBJS)
+ @printf "TESTBINS: %s\n" $(TESTBINS)