pike.git/
src/
Makefile.in
Branch:
Tag:
Non-build tags
All tags
No tags
1998-08-02
1998-08-02 19:25:00 by Henrik Grubbström (Grubba) <grubba@grubba.org>
2a4950f93313cb968f177d8b411317ee797f2537 (
11
lines) (+
6
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed bug in cvsclean target.
Rev: src/Makefile.in:1.111
1:
#
-
# $Id: Makefile.in,v 1.
110
1998/08/02
16
:
47
:
03
grubba Exp $
+
# $Id: Makefile.in,v 1.
111
1998/08/02
19
:
25
:
00
grubba Exp $
# # This line is needed on some machines.
314:
-name 'config.cache' ')' -exec rm -f \{\} \; cvsclean: distclean
-
(
cd
$(SRCDIR); \
-
for
d
in
`find
.
-
type
d
-print`
;
do
\
-
if
test
-f "$$d/.cvsignore"
;
then
\
-
(cd $$d && rm -f `cat .
cvsignore`
); \
+
(
for
d in `cd
$(SRCDIR);
find . -type d -print`; do
\
+
if
test
-
f
"$(SRCDIR)/$$d/.cvsignore"
;
then
\
+
(cd "$$d" && rm
-f
`cat
"
$(SRCDIR)/
$$d/.cvsignore"
`)
; \
+
(cd
"$(SRCDIR)/
$$d
"
&& rm -f `cat
"$(SRCDIR)/$$d/
.
cvsignore"`
); \
else :; fi; \ done)