X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/f9d04f08f7ca18e099843180edea967dd831df91..bc338899110ea22098559081f77cbd0f7a8044bd:/src/Makefile diff --git a/src/Makefile b/src/Makefile index ec573b5d6..161167f3f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,7 +2,7 @@ # appropriate links, and then creating and running the main makefile in that # directory. -# Copyright (c) University of Cambridge, 1995 - 2007 +# Copyright (c) University of Cambridge, 1995 - 2013 # See the file NOTICE for conditions of use and distribution. # IRIX make uses the shell that is in the SHELL variable, which often defaults @@ -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