diff options
author | Thomas Graf <tgraf@redhat.com> | 2011-11-14 13:35:30 +0100 |
---|---|---|
committer | Jiří Klimeš <jklimes@redhat.com> | 2011-11-14 13:40:28 +0100 |
commit | be2e40c66714e90557a5a0c7722ed087240b04df (patch) | |
tree | 8e77f3a914f073e52aeec8a44f06c9ea4b41b46e /Makefile.am | |
parent | 85f49630af71e5276ee51f4e5fe8d29119899af5 (diff) | |
download | NetworkManager-be2e40c66714e90557a5a0c7722ed087240b04df.tar.gz |
build: add "cscope" target to makefile
It builds cscope database, gets cleaned on "clean".
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index c128368ce8..912ded3a05 100644 --- a/Makefile.am +++ b/Makefile.am @@ -38,3 +38,8 @@ pkgconfig_DATA = NetworkManager.pc ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} +CLEANFILES = cscope.in.out cscope.out cscope.po.out + +.PHONY: cscope +cscope: + cscope -b -q -R -Iinclude -ssrc -slibnm-glib -slibnm-util -smarshallers -scli/src; |