Generate tags file

This commit is contained in:
C. McEnroe 2020-08-15 09:56:32 -04:00
parent f39d916e3a
commit 3e2568aeb0
2 changed files with 7 additions and 1 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
config.mk
spawn
spawnd
tags

View File

@ -15,6 +15,8 @@ MAN5 = spawntab.5
OBJS += daemon.o
OBJS += service.o
dev: tags all
all: ${BINS}
spawnd: ${OBJS}
@ -22,8 +24,11 @@ spawnd: ${OBJS}
${OBJS}: daemon.h
tags: *.c *.h
ctags -w *.c *.h
clean:
rm -f ${BINS} ${OBJS}
rm -f ${BINS} ${OBJS} tags
install: ${BINS} ${MAN5} ${MAN8}
install -d ${DESTDIR}${PREFIX}/sbin