loolwsd: Use automake generated tag rules to create tags file

Automake already have rules, make tags and make ctags, for emacs
and vim style tags respectively. We can pass our custom flags to
them using the AM_ macros.

https://www.gnu.org/software/automake/manual/html_node/Tags.html

This commit also adds support to create emacs style tags using
automake's pre-generated tag rules.

Change-Id: I4f6ed997fab6964b3c1f6637e3fd0365f8d4c8b8
Reviewed-on: https://gerrit.libreoffice.org/23442
Reviewed-by: pranavk <pranavk@collabora.com>
Tested-by: pranavk <pranavk@collabora.com>
private/hcvcastro/socket
Pranav Kant 2016-03-22 23:56:57 +05:30 committed by pranavk
parent 129f797c83
commit 844ff4c571
1 changed files with 3 additions and 3 deletions

View File

@ -7,6 +7,9 @@ dist_bin_SCRIPTS = loolwsd-systemplate-setup discovery.xml
AM_CPPFLAGS = -pthread
AM_LDFLAGS = -pthread
AM_ETAGSFLAGS = --c++-kinds=+p --fields=+iaS --extra=+q -R --totals=yes *
AM_CTAGSFLAGS = $(AM_ETAGSFLAGS)
shared_sources = LOOLProtocol.cpp LOOLSession.cpp MessageQueue.cpp Util.cpp
loolwsd_SOURCES = LOOLWSD.cpp ChildProcessSession.cpp MasterProcessSession.cpp TileCache.cpp Admin.cpp $(shared_sources)
@ -50,6 +53,3 @@ all-local: loolbroker loolkit
sudo @SETCAP@ cap_fowner,cap_mknod,cap_sys_chroot=ep loolbroker; \
sudo @SETCAP@ cap_fowner,cap_mknod,cap_sys_chroot=ep loolkit; \
fi
tags:
ctags --c++-kinds=+p --fields=+iaS --extra=+q -R --totals=yes *