From 077ee9c753d2d1dc1a7fc4ca9fcadf9131e3e81e Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Wed, 18 Sep 2024 13:30:11 +0100 Subject: Add Makefile debug info target --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile') 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) -- cgit