comparison lisp/Makefile.in @ 108578:438f784b2966

Remove references to CVS directories etc in Makefiles. * Makefile.in (install-arch-indep): Remove references to RCS, CVS, and other files that no longer exist. * leim/Makefile.in (install): Remove references to CVS-related files. * lisp/Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Remove references to CVS, RCS and Old directories. * src/Makefile.in (${ns_appdir}): Remove references to CVS-related files.
author Glenn Morris <rgm@gnu.org>
date Fri, 14 May 2010 17:42:22 -0700
parents 3040d386675c
children ce960720ed3f
comparison
equal deleted inserted replaced
108577:e81c7c754bb6 108578:438f784b2966
82 # The actual Emacs command run in the targets below. 82 # The actual Emacs command run in the targets below.
83 83
84 emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) 84 emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT)
85 85
86 # Common command to find subdirectories 86 # Common command to find subdirectories
87
88 setwins=subdirs=`(find . -type d -print)`; \ 87 setwins=subdirs=`(find . -type d -print)`; \
89 for file in $$subdirs; do \ 88 for file in $$subdirs; do \
90 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \ 89 case $$file in */.* | */.*/* | */=* ) ;; \
91 *) wins="$$wins $$file" ;; \ 90 *) wins="$$wins $$file" ;; \
92 esac; \ 91 esac; \
93 done 92 done
94 93
95 # Find all subdirectories except `obsolete' and `term'. 94 # Find all subdirectories except `obsolete' and `term'.
96
97 setwins_almost=subdirs=`(find . -type d -print)`; \ 95 setwins_almost=subdirs=`(find . -type d -print)`; \
98 for file in $$subdirs; do \ 96 for file in $$subdirs; do \
99 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \ 97 case $$file in */.* | */.*/* | */=* | */obsolete | */term ) ;; \
100 *) wins="$$wins $$file" ;; \ 98 *) wins="$$wins $$file" ;; \
101 esac; \ 99 esac; \
102 done 100 done
103 101
104 # Find all subdirectories in which we might want to create subdirs.el 102 # Find all subdirectories in which we might want to create subdirs.el
105
106 setwins_for_subdirs=subdirs=`(find . -type d -print)`; \ 103 setwins_for_subdirs=subdirs=`(find . -type d -print)`; \
107 for file in $$subdirs; do \ 104 for file in $$subdirs; do \
108 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */cedet* ) ;; \ 105 case $$file in */.* | */.*/* | */=* | */cedet* ) ;; \
109 *) wins="$$wins $$file" ;; \ 106 *) wins="$$wins $$file" ;; \
110 esac; \ 107 esac; \
111 done 108 done
112 109
113 # `compile-main' tends to be slower than `recompile' but can be parallelized 110 # `compile-main' tends to be slower than `recompile' but can be parallelized