diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-03-27 12:20:09 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-03-27 12:20:09 +0100 |
commit | ee8bc9659c172a06fc40836c7dea1fb1d9aff244 (patch) | |
tree | 08034fd0d2b1b23e1ef657aa43c6da1b8e8f4113 /source4/build | |
parent | 424370274af3a1a837a0ce3078879a3dddee1e33 (diff) | |
download | samba-ee8bc9659c172a06fc40836c7dea1fb1d9aff244.tar.gz samba-ee8bc9659c172a06fc40836c7dea1fb1d9aff244.tar.bz2 samba-ee8bc9659c172a06fc40836c7dea1fb1d9aff244.zip |
s4:build: make it possible to pass down CTAGS_OPTIONS or ETAGS_OPTIONS
metze
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/make/rules.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/build/make/rules.mk b/source4/build/make/rules.mk index 55ecf8968b..e9f4786d34 100644 --- a/source4/build/make/rules.mk +++ b/source4/build/make/rules.mk @@ -185,7 +185,8 @@ showflags:: base_srcdirs = $(srcdir) ../librpc/ ../lib/ ../libcli etags: - etags `find $(base_srcdirs) -name "*.[ch]"` + etags $(ETAGS_OPTIONS) `find $(base_srcdirs) -name "*.[ch]"` ctags: - ctags `find $(base_srcdirs) -name "*.[ch]"` + ctags $(CTAGS_OPTIONS) `find $(base_srcdirs) -name "*.[ch]"` + |