From 3be54b6fa454d8ae8f347f1c148489e82151b69f Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Fri, 4 Aug 2023 13:55:53 -0500 Subject: [PATCH] Added make ctags as an alias for make tags No more typing this wrong. It probably should have been named make ctags originally, but since it's been make tags for so long I'm leaving both as an option for now. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e5012c85..86b24677 100644 --- a/Makefile +++ b/Makefile @@ -180,8 +180,8 @@ size: $(OBJ) $(SIZE) -t $^ ## Generate a ctags file -.PHONY: tags -tags: +.PHONY: tags ctags +tags ctags: $(CTAGS) --totals --c-types=+p $(shell find -H -name '*.h') $(SRC) ## Show this help text