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.
118
1998/09/29
13
:
51
:
44
grubba Exp $
+
# $Id: Makefile.in,v 1.
119
1998/09/29
14
:
30
:
19
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:201:
$(CC) $(CFLAGS) -c $(SRCDIR)/interpret.c -o interpret.o || NO_ULIMIT=yes $(CC) $(PREFLAGS) $(NOOPTFLAGS) -c $(SRCDIR)/interpret.c -o interpret.o force : # install install: pike hilfe pike-module aclocal @echo @echo Installing Pike... @echo @echo "Creating directories..."; \
-
@for
d in "$(prefix)" "$(exec_prefix)" "$(prefix)/lib" \
+
for
d in "$(prefix)" "$(exec_prefix)" "$(prefix)/lib" \
"$(man_prefix)" "$(man_prefix)/man1" "$(man_prefix)/man3" \ "$(lib_prefix)" "$(data_prefix)" "$(share_prefix)" \ "$(prefix)/include" "$(prefix)/include/pike"; do \ if [ -d "$$d/." ]; then : ; else \ echo "$$d"; \ mkdir "$$d" || exit 1; \ chmod a+rx "$$d"; \ chmod u+w "$$d"; \ fi; \ done
pike.git/src/Makefile.in:312:
if [ -f "$(lib_prefix)/$$f" ]; then \ mv -f "$(lib_prefix)/$$f" "$(lib_prefix)/$$f.old"; \ else : ; fi; \ cp "$(TMP_LIBDIR)/$$f" "$(lib_prefix)/$$f" || exit 1; \ chmod a+r "$(lib_prefix)/$$f"; \ chmod u+w "$(lib_prefix)/$$f"; \ fi ; \ done @if [ -d "$(MANDIR_SRC)/." ]; then \ echo ; echo "Installing manual pages..."; \
-
for f in `cd "$(MANDIR_SRC)/; echo *.1`; do \
+
for f in `cd "$(MANDIR_SRC)/
"
; echo *.1`; do \
dest = "$(man_prefix)/man1/$$f"; \ if cmp "$$dest" "$(MANDIR_SRC)/$$f" >/dev/null 2>&1 ; \ then : ; else \ echo "$$dest"; \ if [ -f "$$dest" ]; then \ mv -f "$$dest" "$$dest.old"; \ else : ; fi; \ cp "$(MANDIR_SRC)/$$f" "$$dest" || exit 1; \ chmod a+r "$$dest"; \ chmod u+w "$$dest"; \