aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Makefile
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2020-02-17 15:27:36 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2020-02-17 15:27:36 -0500
commitef75e0506d5a1fa9e85eae1eb5a1fa154961233a (patch)
treeafebc1c22710ad089e037b5d888124cb62db4889 /src/Makefile
parent9eb47002b4ccfac4f57118ed4be11f21b0eddca5 (diff)
Removed Makefile rule to create a ctags tags file.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/Makefile b/src/Makefile
index 757c51aa..676a77a6 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -444,17 +444,8 @@ clean-deps:
rm -rf scintilla ../lexers lua gtdialog cdk termkey win32gtk win32curses \
gtkosx $(notdir ../doc/bombay)
-# Count lines of code and generate ctags.
+# Count lines of code.
sources = ../core ../modules/ansi_c ../modules/lua ../modules/textadept \
textadept.c Makefile ../init.lua
count: $(cloc) ; perl $< $(sources) --not-match-f=tadoc.lua
-ctags:
- ctags -R --langdef=luax --langmap=luax:.lua --exclude="*doc*" \
- --exclude=scintilla/cocoa --exclude=scintilla/lexers \
- --exclude=scintilla/qt --exclude=scintilla/scripts \
- --exclude=scintilla/test --exclude=scintilla/win32 \
- --regex-luax="/^\s*function\s+[^[:space:]\.]*\.?([[:alnum:]_]+)\(/\1/f/" \
- --regex-luax="/^\s*local\s+function\s+([[:alnum:]_]+)\(/\1/F/" \
- --regex-luax="/^[^[:space:]\.]*\.?([[:alnum:]_]+)\s*=\s*[{]/\1/t/" \
- $(sources) scintilla gtdialog/gtdialog.c