From 7eae2429abfc82f2f113c0e64e91681c325ee418 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 4 Jan 2021 12:21:22 -0800 Subject: [PATCH] simplify tags --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index aa2adab..7abd102 100644 --- a/Makefile +++ b/Makefile @@ -25,8 +25,8 @@ tags: TAGS $(BIN): viscal.c Makefile $(CC) $(CFLAGS) -o $@ $< -TAGS: - ./scripts/mktags libical > $@ +tags: + ctags *.{c,h} > $@ check: $(BIN) echo "write tests!" -- 2.30.2