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.
412
2005/12/
04
20
:
13
:
58
nilsson Exp $
+
# $Id: Makefile.in,v 1.
413
2005/12/
30
16
:
32
:
42
nilsson Exp $
# # This line is needed on some machines. @SET_MAKE@
-
# Pike embed target, either
pike
.so or
pike
.a.
+
# Pike embed target, either
libpike
.so or
libpike
.a.
PIKE_LIB=@PIKE_LIB@ # 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 INSTALL=@INSTALL@ SRCDIR=@srcdir@
pike.git/src/Makefile.in:256:
echo; \ echo 'Compilation warning and error summary:'; \ echo '--------------------------------------'; \ fi @echo @cat compiler-warnings @echo @echo 'End of summary' @echo '--------------'
-
pike
.so: $(OBJ) modules/linker_options post_modules/linker_options
-
@echo "Linking
pike
.so";\
-
if $(TMP_BINDIR)/smartlink "$(LDSHARED)" $(LDFLAGS) -o
pike
.@SO@ \
+
libpike
.so: $(OBJ) modules/linker_options post_modules/linker_options
+
@echo "Linking
libpike
.so";\
+
if $(TMP_BINDIR)/smartlink "$(LDSHARED)" $(LDFLAGS) -o
libpike
.@SO@ \
$(OBJ) `cat modules/linker_options post_modules/linker_options` \ $(LIBS); then \ if test "@SO@" != so ; then mv "module.@SO@" module.so ; \ else :; fi ;\ else \ echo "Linking failed:" >&2; \
-
echo $(TMP_BINDIR)/smartlink "$(LDSHARED)" $(LDFLAGS) -o
pike
.@SO@ \
+
echo $(TMP_BINDIR)/smartlink "$(LDSHARED)" $(LDFLAGS) -o
libpike
.@SO@ \
$(OBJ) `cat modules/linker_options post_modules/linker_options` \ $(LIBS) >&2 ;\ exit 1; \ fi # FIXME: Static linked version; this doesn't work yet! # Since we need to split linker_options into archives and options.
-
pike
.a: $(OBJ) modules/linker_options post_modules/linker_options
-
-rm -f
pike
.a
-
$(AR) cq
pike
.a $(OBJ)
-
-@RANLIB@
pike
.a
+
libpike
.a: $(OBJ) modules/linker_options post_modules/linker_options
+
-rm -f
libpike
.a
+
$(AR) cq
libpike
.a $(OBJ)
+
-@RANLIB@
libpike
.a
#pike: main.o @DLOPEN_O@ $(PIKE_LIB) master-stamp pike.syms pike: main.o $(OBJ) master-stamp pike.syms modules/linker_options post_modules/linker_options -@if [ -f pike.old.exe ] ; then rm -f pike.old.exe || : ; else : ; fi -@if [ -f pike.old ] ; then rm -f pike.old || : ; else : ; fi -@if [ -f pike.exe ] ; then mv pike.exe pike.old.exe || : ; else : ; fi -@if [ -f pike ] ; then mv pike pike.old || : ; else : ; fi # $(LD) $(LDFLAGS) main.o @DLOPEN_O@ -o pike $(LD) $(LDFLAGS) main.o $(OBJ) \ `cat modules/linker_options post_modules/linker_options` \