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.
328
2002/
09
/
24
17
:
36
:
44
grubba Exp $
+
# $Id: Makefile.in,v 1.
329
2002/
10
/
02
12
:
53
:
26
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:191:
# # User callable targets # # Update the dumped modules, but only if dump_modules has been used earlier. # # Since post_modules might be static, we must remake pike after them # to make sure they are linked in. all: module_objects tools if [ -f dumpversion ]; then $(MAKE) $(MAKE_FLAGS) dump_modules; else :; fi
-
$(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) post_
modules
+
$(MAKE) $(MAKE_FLAGS) $(MAKE_PARALLEL) post_
module_objects
$(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: pike dump_modules cd $(SRCDIR)/../refdoc && $(MAKE) $(MAKE_FLAGS) PIKE="$(RUNPIKE)" $(DOCTARGET)
-
post_modules: pike
+
# Backward compat.
+
post_modules:
post_module_objects
+
+
post_module_objects:
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