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.
291
2002/03/
10
03
:
28
:
33
mast Exp $
+
# $Id: Makefile.in,v 1.
292
2002/03/
12
09
:
27
:
32
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:295:
if [ "$(exec_prefix)" != "/usr/local/bin" -a \ "$(exec_prefix)" != "/usr/local/bin/" ]; then \ ( sed -e 's!/usr/local/bin!$(exec_prefix)!' <$(TMP_BINDIR)/hilfe \ >./hilfe && chmod 755 ./hilfe) || exit 1 ; \ else \ $(INSTALL) $(TMP_BINDIR)/hilfe `pwd`/hilfe || exit 1; \ fi @echo "Done." dump_modules: pike master-stamp $(SRCDIR)/dumpmodule.pike
-
args=
"
$
(DUMPARGS)"
;
\
-
$(RUNPIKE) $(SRCDIR)/dumpmodule.pike \
-
$${args:
-
-
-
log-file --update-only=dumpversion --report-
failed}
\
-
--recursive --target-dir=lib "$(LIBDIR_SRC)/modules"
+
if [
"
x$
(DUMPARGS)"
=
x
]
;
then
args="
--log-file --update-only=dumpversion --report-
failed"
; else args="$(DUMPARGS)" ; fi;
\
+
$(RUNPIKE) $(SRCDIR)/dumpmodule.pike $$args
--recursive --target-dir=lib "$(LIBDIR_SRC)/modules"
force_dump_modules: -rm dumpversion 2>/dev/null $(MAKE) $(MAKE_FLAGS) dump_modules .SUFFIXES: .c .h .o .cmod .pp .pph .protos .h_src .c.pp: $(CPP) $(PREFLAGS) -DPMOD_EXPORT=PMOD_EXPORT \ -DPMOD_PROTO=PMOD_PROTO "$<" >"$@"
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