From 6f067e41c8163982310546246a5d5b64457f078f Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 5 Mar 2018 12:37:52 -0500 Subject: Generate tags --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 14d4506..60f4cfe 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ BINS = server client help meta merge CFLAGS += -Wall -Wextra -Wpedantic LDLIBS = -lcurses -all: $(BINS) +all: tags $(BINS) $(BINS): torus.h @@ -40,7 +40,10 @@ chroot.tar: server client help termcap.db install -o root -g wheel -m 555 server client help root/bin tar -c -f chroot.tar -C root bin home lib libexec usr +tags: *.h *.c + ctags -w *.h *.c + clean: - rm -f $(BINS) termcap termcap.db chroot.tar + rm -f tags $(BINS) termcap termcap.db chroot.tar .PHONY: all clean -- cgit 1.4.1