commit 444844998f82642a2c27b1e2b7ce5fddbdbd38d9 parent 4a03ae99434e5d86925386af38394a41ddb9cc18 Author: William Casarin <bill@casarin.me> Date: Mon, 16 Jan 2017 22:02:46 -0800 fix tag generation Diffstat:
M | Makefile | | | 2 | +- |
M | scripts/mktags | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -18,7 +18,7 @@ $(BIN): $(BIN).c Makefile $(CC) $(CFLAGS) -o $@ $< TAGS: - ./scripts/mktags $(DEPS) > $@ + ./scripts/mktags libical > $@ clean: rm -f $(BIN) diff --git a/scripts/mktags b/scripts/mktags @@ -10,4 +10,4 @@ for dir in $(tr ' ' '\n' <<< "$DIRS"); do FILES+=$(find "$dir" -type f -name '*.h') done -<<<"$FILES" xargs etags --declarations -o - +<<<"$FILES" xargs etags -o - calendar.c