pike.git
/
src
/
Makefile.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/Makefile.in:154:
@echo @echo Installing Pike... @echo @for d in "$(prefix)" "$(exec_prefix)" "$(prefix)/lib" "$(lib_prefix)" "$(prefix)/include" "$(prefix)/include/pike"; do if [ \! -d "$$d/." ]; then echo "$$d"; mkdir "$$d"; chmod 755 "$$d"; else : ; fi; done @for d in `cd "$(TMP_LIBDIR)"; find . -type d -print`; do if [ \! -d "$(lib_prefix)/$$d/." ]; then echo "$(lib_prefix)/$$d"; mkdir "$(lib_prefix)/$$d"; chmod 755 "$(lib_prefix)/$$d/."; else : ; fi; done @if [ -f "$(exec_prefix)/pike" ]; then \ echo Renaming old "$(exec_prefix)/pike" to "$(exec_prefix)/pike.old"; \ mv -f "$(exec_prefix)/pike" "$(exec_prefix)/pike.old"; \ else : ; fi @echo "$(exec_prefix)/pike"; $(INSTALL) ./pike $(exec_prefix)
-
@if [ -f $(
SRCDIR
)/
../bin/
hilfe ]; then \
+
@if [ -f $(
TMP_BINDIR
)/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; \
+
sed -e 's!/usr/local/bin!$(exec_prefix)!' <$(
TMP_BINDIR
)/
hilfe >
./hilfe
&&
\
+
chmod
755
.
/hilfe && \
+
$(INSTALL)
./hilfe
$(exec_prefix)
; \
+
else $(INSTALL) $(
TMP_BINDIR
)/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 # 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
pike.git/src/Makefile.in:232:
# run hilfe, for interactive testing run_hilfe: $(RUNPIKE) $(TMP_BINDIR)/hilfe feature_list: $(RUNPIKE) $(TMP_BINDIR)/feature_list lib: $(LIBDIR_SRC) $(LIBDIR_SRC)/master.pike $(LIBDIR_SRC)/modules $(LIBDIR_SRC)/include cp -r $(LIBDIR_SRC) .
+
-rm -r `find lib -type d -name CVS`
+
-rm `find lib -type f -name '*~'`
-touch ./lib # make export archive (requires compiled Pike) # Do not compile in source tree if you want to use this! # Beware that export archive this includes bison/yacc/byacc source # and thus has to follow the rules stated in that code. export: new_peep_engine $(SRCDIR)/language.c $(SRCDIR)/language.h depend chmod +x $(SRCDIR)/install-sh $(RUNPIKE) $(TMP_BINDIR)/export.pike Odbc Oracle _Crypto