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.
80
1998/04/
19
00
:
14
:
54
hubbe
Exp $
+
# $Id: Makefile.in,v 1.
81
1998/04/
21
11
:
38
:
51
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:18:
# These are used while compiling LIBDIR_SRC = @LIBDIR@ TMP_BINDIR = @BINDIR@ TMP_BUILDDIR = @BUILDDIR@ TMP_DOCDIR = @DOCDIR@ TMP_LIBDIR = $(TMP_BUILDDIR)/lib prefix = @prefix@ exec_prefix = $(prefix)/bin lib_prefix = $(prefix)/lib/pike
-
share
_prefix = @datadir@/pike
+
data_prefix = @datadir@
+
share_prefix =
$(data_prefix)
/pike
# # use bison please, yacc isn't good enough. # YACC=@YACC@ YFLAGS=-d -v # If you don't have 'strchr', then add next flag to CFLAGS. # -Dstrchr=index -Dstrrchr=rindex #
pike.git/src/Makefile.in:180:
force : # install install: pike hilfe @echo @echo Installing Pike... @echo @echo "Creating directories..."; \ for d in "$(prefix)" "$(exec_prefix)" "$(prefix)/lib" \
-
"$(lib_prefix)" "$(share_prefix)" \
+
"$(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 @for d in `cd "$(TMP_LIBDIR)"; find . -type d -print`; do \ if [ -d "$(lib_prefix)/$$d/." ]; then : ; else \