From 1e2a8d33061196fe6e750a59554c5fec49227f4c Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Sat, 28 Sep 2013 13:46:04 +0100 Subject: [PATCH] Add cscope.files build target --- src/Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index ec573b5d6..b4f04b2e4 100644 --- a/src/Makefile +++ b/src/Makefile @@ -85,6 +85,15 @@ clean_exim:; cd build-$(buildname); \ $(RM_COMMAND) -f *.o lookups/*.o lookups/*.a auths/*.o auths/*.a \ routers/*.o routers/*.a transports/*.o transports/*.a lookups/*.so -distclean:; $(RM_COMMAND) -rf build-* +distclean:; $(RM_COMMAND) -rf build-* cscope* + +cscope.files: FRC + echo "-q" > $@ + echo "-p3" >> $@ + find src Local -name "*.[cshyl]" -print \ + -o -name "*akefile*" -print \ + -o -name EDITME -print >> $@ + +FRC: # End of top-level makefile -- 2.30.2