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.
112
1998/08/
05
22
:
45
:02
hubbe
Exp $
+
# $Id: Makefile.in,v 1.
113
1998/08/
07
15
:
48
:02
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:126:
svalue.o @EXTRA_OBJS@ # # User callable targets # all: module_objects hilfe $(MAKE) $(MAKE_FLAGS) pike
+
compiler-warnings : clean
+
@echo Summarizing compiler warnings.
+
@echo
+
@if $(MAKE) $(MAKE_FLAGS) all 2>compiler-warnings ; then \
+
echo; \
+
echo 'Compilation warning summary:'; \
+
else \
+
echo; \
+
echo 'Compilation warning and error summary:'; \
+
fi
+
@cat compiler-warnings
+
pike: $(OBJ) modules/linker_options -@if [ -f pike ] ; then mv pike pike.old || : ; else : ; fi $(LD) $(LDFLAGS) $(OBJ) `cat modules/linker_options` $(LIBS) -o pike # purify pure: $(OBJ) module_objects -@mv pike pike.old 2>/dev/null || true $(SMARTLINK) purify -max-threads=128 -thread_stack_change=8192 -free-queue-length=500 -inuse-at-exit=yes -chain-length=12 $(REALCC) $(LDFLAGS) $(OBJ) `cat modules/linker_options` $(LIBS) -o pike # purecov
pike.git/src/Makefile.in:285:
tidy: -rm -f *.o core y.output y.tab.c y.tab.h -rm -f $(TMP_BINDIR)/core *.o *.i *.i~ testsuite # make clean clean: tidy -( cd modules; $(MAKE) $(MAKE_FLAGS) clean ) -rm -f TAGS tags -rm -f yacc.acts yacc.debug yacc.tmp *.debug.log a.out -rm -f hilfe master.pike
+
-rm -f compiler-warnings
find lib/modules/ -type f -name '*.so_pure*' -exec rm -f \{\} \; # -rm -f lib/master.pike # make _really_ clean spotless: clean -(cd $(SRCDIR); find . -type f -name '*.h.in' -print) | \ sed -e 's/\.in$$//' | xargs rm -f find . -type f '(' -name 'Makefile' -o -name '*~' -o -name '.*~' -o \ -name core -o -name '.nfs*' -name '#*#' -o -name '.pure' -o \ -name 'conftest.*' -o -name 'stamp-h' ')' -exec rm -f \{\} \;