diff options
| author | Benjamin Linskey | 2026-05-30 09:07:40 -0400 |
|---|---|---|
| committer | Benjamin Linskey | 2026-05-30 09:23:26 -0400 |
| commit | 4ca22e8b45d6af1bfa50dbd83db4589e74290bb9 (patch) | |
| tree | 5303109a21659375e087037934742f5b1bfd74a1 | |
| parent | 24ffbcf921e2199376a2a5a8384a3de2bc155141 (diff) | |
| download | rogue-4ca22e8b45d6af1bfa50dbd83db4589e74290bb9.tar.gz | |
Add makefile “tags” target
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -1,2 +1,3 @@ *.o rogue +tags @@ -24,4 +24,7 @@ $(PROG): $(OBJS) .PHONY: clean clean: - rm $(PROG) $(OBJS) + rm -f $(PROG) $(OBJS) tags + +tags: + ctags -d *.c *.h |