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.
This commit is contained in:
Christopher Haster
2023-08-04 13:55:53 -05:00
parent 1c128afc90
commit 3be54b6fa4
+2 -2
View File
@@ -180,8 +180,8 @@ size: $(OBJ)
$(SIZE) -t $^ $(SIZE) -t $^
## Generate a ctags file ## Generate a ctags file
.PHONY: tags .PHONY: tags ctags
tags: tags ctags:
$(CTAGS) --totals --c-types=+p $(shell find -H -name '*.h') $(SRC) $(CTAGS) --totals --c-types=+p $(shell find -H -name '*.h') $(SRC)
## Show this help text ## Show this help text