From cc9c5da29ab0f75dcb15a04099df097f3eac8e60 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Thu, 8 Mar 2012 16:03:45 -0800 Subject: [PATCH] add "make tags" (using `ctags`) --- .gitignore | 1 + Makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 379c7d67..66dc45e0 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ # files in this directory /libthreads +/tags diff --git a/Makefile b/Makefile index 1867a444..becb998b 100644 --- a/Makefile +++ b/Makefile @@ -10,3 +10,6 @@ ${BIN}: ${SOURCE} ${HEADERS} clean: rm -f ${BIN} *.o + +tags:: + ctags -R -- 2.34.1