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.
298
2002/04/11
15
:
53
:
40
mast Exp $
+
# $Id: Makefile.in,v 1.
299
2002/04/11
20
:
27
:
49
mast 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:58:
# OS dependant flags # OSFLAGS= # #Enable warnings from the compiler, if wanted. # WARN=@WARN@ #add extra defines here
-
# Be sure to use -g when looking for bugs
+
DEFINES=@CPPFLAGS@ # -O should work with all compilers OPTIMIZE=@OPTIMIZE@ # Set to a flag for parallelizing make, e.g. -j2. It's given to make # at the level where it's most effective. MAKE_PARALLEL= # Preprocessor flags.
pike.git/src/Makefile.in:334:
# Several optimizers have problems with interpret.c # First try compiling with optimization and if that doesn't work, without. # GCC dumps core on some files @ OSF1 # This kluge should work around that... # FIXME: Make this a configure option .c.o: @echo "Compiling $<" ;\ rm -f $@.fail >/dev/null 2>&1; \ if $(CC) $(CFLAGS) -c $< -o $@ ; then : ; else \
-
echo "
Compilation
command
was:
" >&2;\
-
echo "$(CC) $(PREFLAGS) $(
CFLAGS
) -c $< -o $@" >&2 ;\
+
echo "
WARNING:
Compiler
failure! Trying without optimization!
" >&2;\
+
echo "$(CC) $(PREFLAGS) $(
NOOPTFLAGS
) -c $< -o $@" >&2 ;\
echo "$(CC) $(PREFLAGS) $(CFLAGS) -c $< -o $@" >$@.fail ;\
-
false
; \
+
NO_ULIMIT=yes
; \
+
export NO_ULIMIT; \
+
if $(CC) $(PREFLAGS) $(NOOPTFLAGS) -c $< -o $@ ; then : ; else \
+
exit $$?; \
+
fi; \
fi # # Please note that this must be accompanied by a dependency rule as # The .c file will not be created in the SOURCE directory otherwise. # -Hubbe # .cmod.c: precompile.sh-stamp $(TMP_BINDIR)/precompile.pike ./precompile.sh --cache precompile.pike >"$@" "$<" || { rm "$@"; exit 1; }
pike.git/src/Makefile.in:442:
TAGS: etags -t *.h *.c # verify / debug module_testsuites: ( cd modules && $(MAKE) $(MAKE_FLAGS) testsuites ) ( cd post_modules && $(MAKE) $(MAKE_FLAGS) testsuites ) just_verify: module_testsuites testsuite master-stamp
-
if test "
$
(TESTARGS)" =
""
; then args="-a" ; else args="$(TESTARGS)" ; fi; \
+
if test "
x$
(TESTARGS)" =
x
; then args="-a" ; else args="$(TESTARGS)" ; fi; \
$(RUNPIKE) $(TMP_BINDIR)/test_pike.pike $$args # Testsuite for dynamic loading debugging test_dlopen: dynloadtest.sh sh ./dynloadtest.sh dynloadtest.sh: $(SRCDIR)/test_dynamic_loading.in m4 "$(SRCDIR)/test_dynamic_loading.in" >"$@" dynloadtest.c: dynamic_load.c