pike.git
/
src
/
Makefile.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/Makefile.in:121:
all: module_objects $(MAKE) $(MAKE_FLAGS) pike pike: $(OBJ) compile_interpret modules/linker_options -@mv pike pike.old 2>/dev/null || true $(LD) $(LDFLAGS) $(OBJ) interpret.o `cat modules/linker_options` $(LIBS) -o pike # purify pure: $(OBJ) compile_interpret module_objects -@mv pike pike.old 2>/dev/null || true
-
purify -free-queue-length=500 -inuse-at-exit=yes -chain-length=12
gcc
$(LDFLAGS) $(OBJ) interpret.o `cat modules/linker_options` $(LIBS) -o pike
+
purify -free-queue-length=500 -inuse-at-exit=yes -chain-length=12
@REALCC@
$(LDFLAGS) $(OBJ) interpret.o `cat modules/linker_options` $(LIBS) -o pike
# purecov cover: $(OBJ) compile_interpret module_objects -@mv pike pike.old 2>/dev/null || true
-
purecov purify -free-queue-length=500 -inuse-at-exit=yes -chain-length=12
gcc
$(LDFLAGS) $(OBJ) interpret.o `cat modules/linker_options` $(LIBS) -o pike
+
purecov purify -free-queue-length=500 -inuse-at-exit=yes -chain-length=12
@REALCC@
$(LDFLAGS) $(OBJ) interpret.o `cat modules/linker_options` $(LIBS) -o pike
# quantify quant: $(OBJ) compile_interpret module_objects -@mv pike pike.old 2>/dev/null || true
-
quantify
gcc
$(LDFLAGS) $(OBJ) interpret.o `cat modules/linker_options` $(LIBS) -o pike
+
quantify
@REALCC@
$(LDFLAGS) $(OBJ) interpret.o `cat modules/linker_options` $(LIBS) -o pike
# Several optimizers have problems with interpret.c # First try compiling with optimization and if that doesn't work, without. compile_interpret : force $(MAKE) $(MAKE_FLAGS) interpret.o || NO_ULIMIT=yes $(MAKE) $(MOST_MAKE_FLAGS) "OTHERFLAGS=$(NOOPTFLAGS)" interpret.o force : # install install:
pike.git/src/Makefile.in:162:
@if [ -f $(SRCDIR)/../bin/hilfe ]; then \ echo "$(exec_prefix)/hilfe"; \ if [ "$(exec_prefix)" != "/usr/local/bin" -a \ "$(exec_prefix)" != "/usr/local/bin/" ]; then \ if [ -f $(exec_prefix)/hilfe ]; then \ mv $(exec_prefix)/hilfe $(exec_prefix)/hilfe.old; \ else : ; fi && \ sed -e 's!/usr/local/bin!$(exec_prefix)!' <$(SRCDIR)/../bin/hilfe \ >$(exec_prefix)/hilfe && \ chmod 755 $(exec_prefix)/hilfe; \
-
else $(INSTALL) $(SRCDIR)/../bin/hilfe $(exec_prefix); fi; \
+
else $(INSTALL)
-m 755
$(SRCDIR)/../bin/hilfe $(exec_prefix); fi; \
else : ; fi
-
@for a in $(SRCDIR)/*.h *.h ; do $(INSTALL) $$a $(prefix)/include/pike ; done
-
@for f in `cd "$(TMP_LIBDIR)"; find . -type f -print`; do echo "$(lib_prefix)/$$f"; if [ -f "$(lib_prefix)/$$f" ]; then mv -f "$(lib_prefix)/$$f" "$(lib_prefix)/$$f.old"; else : ; fi; cp "$(TMP_LIBDIR)/$$f" "$(lib_prefix)/$$f"; done
+
@for a in $(SRCDIR)/*.h *.h ; do $(INSTALL)
-m 644
$$a $(prefix)/include/pike ; done
+
@for f in `cd "$(TMP_LIBDIR)"; find . -type f -print`; do echo "$(lib_prefix)/$$f"; if [ -f "$(lib_prefix)/$$f" ]; then mv -f "$(lib_prefix)/$$f" "$(lib_prefix)/$$f.old"; else : ; fi; cp "$(TMP_LIBDIR)/$$f" "$(lib_prefix)/$$f";
chmod 644 "$(lib_prefix)/$$f";
done
# tidy up a bit tidy: -rm -f *.o core y.output y.tab.c y.tab.h -rm -f $(TMP_BINDIR)/core *.o *.i *.i~ testsuite # make clean clean: tidy -( cd modules; ${MAKE} $(MAKE_FLAGS) clean ) -rm -f TAGS tags