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.
251
2001
/
10
/
12
12
:
03
:
50
tomas
Exp $
+
# $Id: Makefile.in,v 1.
252
2002
/
04
/
07
13
:
02
:
10
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:182:
# to make sure they are linked in. all: module_objects hilfe $(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) post_modules $(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) MODULEOBJ=post_module.o pike post_modules: pike @( cd post_modules ; rm remake >/dev/null 2>&1 || : ; \ $(MAKE) $(MAKE_PARALLEL) $(MAKE_FLAGS) || \ ( test -f remake && $(MAKE) $(MAKE_PARALLEL) $(MAKE_FLAGS) ) ) || exit $$?
+
post_modules/modlist_headers.h:
+
@test -f post_modules/modlist_headers.h || touch post_modules/modlist_headers.h
+
+
post_modules/modlist.h:
+
@test -f post_modules/modlist.h || touch post_modules/modlist.h
+
+
post_modules/linker_options:
+
@test -f post_modules/linker_options || touch post_modules/linker_options
+
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:'; \
pike.git/src/Makefile.in:222:
@if test "x$(RUNPIKE)" = "x$(DEFAULT_RUNPIKE)"; then \ $(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) tpike-real; \ else :; fi # Make $(POBJ)s with a recursive make instead of depending on them. # This way, we make sure that all other objects shared with tpike are # up-to-date first. So if the $(POBJ)s, which depend on tpike, trigs # the recursive make of tpike-real above, that one will never start to # make the $(OBJ)s concurrently with this one. stamp-tpike-predep # records the $(POBJ) dependencies without tpike.
-
pike: $(OBJ) master.pike modules/linker_options stamp-tpike-predep
+
pike: $(OBJ) master.pike modules/linker_options stamp-tpike-predep
post_modules/linker_options
$(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) $(POBJ) -@if [ -f pike.old ] ; then rm -f pike.old || : ; else : ; fi -@if [ -f pike.old.exe ] ; then rm -f pike.old.exe || : ; else : ; fi -@if [ -f pike ] ; then mv pike pike.old || : ; else : ; fi
-
$(LD) $(LDFLAGS) $(OBJ) $(POBJ) `cat modules/linker_options post_modules/linker_
options
2>/dev/null`
$(LIBS) -o pike
+
$(LD) $(LDFLAGS) $(OBJ) $(POBJ) `cat modules/linker_options post_modules/linker_
options`
$(LIBS) -o pike
-@if [ -f "post_module.o" -a "$(MODULEOBJ)" = "module.o" ]; then \ touch $(SRCDIR)/post_module.c; \ else :; fi # purify pure: $(OBJ) $(POBJ) master.pike 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) $(POBJ) `cat modules/linker_options` $(LIBS) -o pike # purecov