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.
278
2001/11/
12
13
:
25
:
17
mast
Exp $
+
# $Id: Makefile.in,v 1.
279
2001/11/
26
16
:
11
:
57
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:178:
# # User callable targets # # Since post_modules might be static, we must remake pike after them # to make sure they are linked in. all: module_objects hilfe $(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) post_modules $(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) pike
+
@if [ "`find . -name '*.fail' -print`" = "" ]; then :; else \
+
echo; \
+
echo "Pike compiled and linked ok, but the following file(s) "; \
+
echo "failed to compile with full optimization.";\
+
echo "This may affect performance negatively."; \
+
find . -name '*.fail' -print | sed -e 's/\.fail$$//' -e 's/^/ /'; \
+
echo; \
+
fi
documentation: just-tinstall @if [ -f "$(SRCDIR)/../refdoc/Makefile" ]; then \ PIKE="`pwd`/test-pike"; \ export PIKE; \ (cd $(SRCDIR)/../refdoc && $(MAKE) PIKE="$$PIKE") || exit 1; \ else \ echo "Refdoc directory not found."; \ exit 1; \ fi