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.
113
1998/08/07
15
:
48
:
02
grubba Exp $
+
# $Id: Makefile.in,v 1.
114
1998/08/07
16
:
01
:
34
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:132:
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:'; \
+
echo '----------------------------'; \
else \ echo; \ echo 'Compilation warning and error summary:'; \
-
+
echo '--------------------------------------'; \
fi
-
+
@echo
@cat compiler-warnings
-
+
@echo
+
@echo 'End of summary'
+
@echo '--------------'
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