pike.git
/
src
/
Makefile.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/Makefile.in: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. @SET_MAKE@ # Don't change this line. Define EXTRALIBS before this line if you # wish to add any libraries. LIBS=@LIBS@ $(EXTRALIBS) # This is normall the install program in the source directory
pike.git/src/Makefile.in:307:
-rm -f pike pike.old l.outa* -rm -f modules/*/testsuite -rm -f modules/static_module_makefile modules/dynamic_module_makefile -rm -rf lib distclean: spotless find . -type f '(' -name 'config.log' -o -name 'config.status' -o \ -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) # create tags tags: ctags *.c TAGS: etags -t *.h *.c