build-system-specific-makefile-configuration-from-configure-20011031

junk all of Makefile.${SYS_NAME} in favor of a common makefile built by
configure, and use it
This commit is contained in:
Nathan Neulinger 2001-11-01 04:59:26 +00:00 committed by Derrick Brashear
parent c5b1a3775f
commit 838e1eae1a
159 changed files with 857 additions and 4051 deletions

View File

@ -5,38 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
SHELL=/bin/sh
DEST=@DEST@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afskerneldir=@afskerneldir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
# Systype-generic items
SYS_NAME=@AFS_SYSNAME@
MKAFS_OSTYPE=@MKAFS_OSTYPE@
# Systype-specific items
LINUX_KERNEL_PATH=@LINUX_KERNEL_PATH@
LINUX_VERSION=@LINUX_VERSION@
DARWIN_INFOFILE=@DARWIN_INFOFILE@
# Other items
LIB_AFSDB=@LIB_AFSDB@
# Enable build+install of obsolete and insecure packages # Enable build+install of obsolete and insecure packages
# Set to anything other than YES, or comment out to disable the build # Set to anything other than YES, or comment out to disable the build
@ -45,8 +15,6 @@ WITH_INSECURE=@WITH_INSECURE@
ENABLE_KERNEL_MODULE=@ENABLE_KERNEL_MODULE@ ENABLE_KERNEL_MODULE=@ENABLE_KERNEL_MODULE@
include src/config/Makefile.${SYS_NAME}
# To compile AFS from scratch in the src tree run "make". # To compile AFS from scratch in the src tree run "make".
# This recursively calls "make install ..." and does not depend on the # This recursively calls "make install ..." and does not depend on the
# existence of any non-standard programs. # existence of any non-standard programs.
@ -362,7 +330,7 @@ libafs_tree: libafs_setup ${KERNELDIR}
${INSTALL} -c -f $$f libafs_tree/$$f; \ ${INSTALL} -c -f $$f libafs_tree/$$f; \
done done
src/config/config src/libafs/MakefileProto.${MKAFS_OSTYPE}.in libafs_tree/Makefile.in ${SYS_NAME} src/config/config src/libafs/MakefileProto.${MKAFS_OSTYPE}.in libafs_tree/Makefile.in ${SYS_NAME}
${INSTALL} -c src/config/Makefile.${SYS_NAME}.in libafs_tree/config ${INSTALL} -c src/config/Makefile.config.in libafs_tree/config
${INSTALL} -c src/config/afsconfig.h.in libafs_tree/config ${INSTALL} -c src/config/afsconfig.h.in libafs_tree/config
${INSTALL} -c -f -ns configure-libafs libafs_tree/configure ${INSTALL} -c -f -ns configure-libafs libafs_tree/configure
case ${SYS_NAME} in \ case ${SYS_NAME} in \
@ -619,7 +587,7 @@ distclean: clean
src/config/Makefile \ src/config/Makefile \
src/config/Makefile.version \ src/config/Makefile.version \
src/config/Makefile.version-NOCML \ src/config/Makefile.version-NOCML \
src/config/Makefile.${SYS_NAME} \ src/config/Makefile.config \
src/dauth/Makefile \ src/dauth/Makefile \
src/des/test/Makefile \ src/des/test/Makefile \
src/des/Makefile \ src/des/Makefile \

View File

@ -484,4 +484,6 @@ AC_SUBST(WITH_OBSOLETE)
AC_SUBST(WITH_INSECURE) AC_SUBST(WITH_INSECURE)
AC_SUBST(DARWIN_INFOFILE) AC_SUBST(DARWIN_INFOFILE)
OPENAFS_OSCONF
]) ])

View File

@ -20,5 +20,6 @@ fi
AC_OUTPUT( \ AC_OUTPUT( \
Makefile \ Makefile \
config/Makefile.config \
config/Makefile.${AFS_SYSNAME} \ config/Makefile.${AFS_SYSNAME} \
) )

View File

@ -12,12 +12,6 @@ if test "${DEST}x" = "x"; then
DEST="${SRCDIR_PARENT}/${AFS_SYSNAME}/dest" DEST="${SRCDIR_PARENT}/${AFS_SYSNAME}/dest"
fi fi
# Check for files involved in porting. Report errors, don't make the
# user hunt through the configure log after the build fails!
if test ! -r ${TOP_SRCDIR}/config/Makefile.${AFS_SYSNAME}.in ; then
AC_MSG_ERROR(no source file ${TOP_SRCDIR}/config/Makefile.${AFS_SYSNAME}.in)
fi
AC_OUTPUT( \ AC_OUTPUT( \
Makefile \ Makefile \
src/afs/Makefile \ src/afs/Makefile \
@ -40,8 +34,8 @@ src/cmd/Makefile \
src/comerr/test/Makefile \ src/comerr/test/Makefile \
src/comerr/Makefile \ src/comerr/Makefile \
src/config/Makefile \ src/config/Makefile \
src/config/Makefile.config \
src/config/Makefile.version-NOCML \ src/config/Makefile.version-NOCML \
src/config/Makefile.${AFS_SYSNAME} \
src/dauth/Makefile \ src/dauth/Makefile \
src/des/test/Makefile \ src/des/test/Makefile \
src/des/Makefile \ src/des/Makefile \

View File

@ -5,33 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL=/bin/sh
KERNELDIR = ../libafs
UKERNELDIR = ../libuafs
include ../config/Makefile.${SYS_NAME}
all: kinstall ukinstall ${TOP_INCDIR}/afs/afs.h ${TOP_INCDIR}/afs/osi_inode.h ${TOP_INCDIR}/afs/afs_stats.h ${TOP_INCDIR}/afs/exporter.h ${TOP_INCDIR}/afs/nfsclient.h all: kinstall ukinstall ${TOP_INCDIR}/afs/afs.h ${TOP_INCDIR}/afs/osi_inode.h ${TOP_INCDIR}/afs/afs_stats.h ${TOP_INCDIR}/afs/exporter.h ${TOP_INCDIR}/afs/nfsclient.h
case ${SYS_NAME} in \ case ${SYS_NAME} in \
@ -46,8 +21,8 @@ kinstall: ${KERNELDIR}/afs AFS_component_version_number.c afszcm.cat
${INSTALL} ${srcdir}/*.[csh] ${KERNELDIR}/afs ${INSTALL} ${srcdir}/*.[csh] ${KERNELDIR}/afs
-${INSTALL} *.[csh] ${KERNELDIR}/afs -${INSTALL} *.[csh] ${KERNELDIR}/afs
${INSTALL} ${srcdir}/VNOPS/*.[csh] ${KERNELDIR}/afs ${INSTALL} ${srcdir}/VNOPS/*.[csh] ${KERNELDIR}/afs
${INSTALL} ${srcdir}/${AFS_OSTYPE}/*.[csh] ${KERNELDIR}/afs ${INSTALL} ${srcdir}/${MKAFS_OSTYPE}/*.[csh] ${KERNELDIR}/afs
-${INSTALL} ${AFS_OSTYPE}/*.[csh] ${KERNELDIR}/afs -${INSTALL} ${MKAFS_OSTYPE}/*.[csh] ${KERNELDIR}/afs
afs_trace.h afs_trace.msf: afs_trace.h afs_trace.msf:
${COMPILE_ET} -v 2 -p ${srcdir} afs_trace.et ${COMPILE_ET} -v 2 -p ${srcdir} afs_trace.et
@ -85,7 +60,7 @@ install: ${DESTDIR}${includedir}/afs/afs.h ${DESTDIR}${includedir}/afs/osi_in
esac esac
case ${SYS_NAME} in \ case ${SYS_NAME} in \
*linux* ) \ *linux* ) \
${INSTALL} ${AFS_OSTYPE}/osi_vfs.h ${DESTDIR}${includedir}/afs ;;\ ${INSTALL} ${MKAFS_OSTYPE}/osi_vfs.h ${DESTDIR}${includedir}/afs ;;\
* ) \ * ) \
echo No vfs headers to install for ${SYS_NAME};; \ echo No vfs headers to install for ${SYS_NAME};; \
esac esac
@ -105,13 +80,13 @@ ${TOP_INCDIR}/afs/afs.h: afs.h
${INSTALL} $? $@ ${INSTALL} $? $@
${DEST}/include/afs/osi_inode.h: ${AFS_OSTYPE}/osi_inode.h ${DEST}/include/afs/osi_inode.h: ${MKAFS_OSTYPE}/osi_inode.h
${INSTALL} $? $@ ${INSTALL} $? $@
${DESTDIR}${includedir}/afs/osi_inode.h: ${AFS_OSTYPE}/osi_inode.h ${DESTDIR}${includedir}/afs/osi_inode.h: ${MKAFS_OSTYPE}/osi_inode.h
${INSTALL} $? $@ ${INSTALL} $? $@
${TOP_INCDIR}/afs/osi_inode.h: ${AFS_OSTYPE}/osi_inode.h ${TOP_INCDIR}/afs/osi_inode.h: ${MKAFS_OSTYPE}/osi_inode.h
${INSTALL} $? $@ ${INSTALL} $? $@
@ -161,7 +136,7 @@ dest: ${DEST}/include/afs/afs.h ${DEST}/include/afs/osi_inode.h ${DEST}/includ
esac esac
case ${SYS_NAME} in \ case ${SYS_NAME} in \
*linux* ) \ *linux* ) \
${INSTALL} ${AFS_OSTYPE}/osi_vfs.h ${DEST}/include/afs ;;\ ${INSTALL} ${MKAFS_OSTYPE}/osi_vfs.h ${DEST}/include/afs ;;\
* ) \ * ) \
echo No vfs headers to install for ${SYS_NAME};; \ echo No vfs headers to install for ${SYS_NAME};; \
esac esac

View File

@ -6,32 +6,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# afsd makefile
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CFLAGS=-g -I. -I${srcdir} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-g -I. -I${srcdir} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}
LDFLAGS = -g ${XLDFLAGS} LDFLAGS = -g ${XLDFLAGS}

View File

@ -5,32 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# Makefile for Afsmonitor, the AFS Performance monitoring tool
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CFLAGS=-g -I. \ CFLAGS=-g -I. \
-I${TOP_OBJDIR}/src/config \ -I${TOP_OBJDIR}/src/config \

View File

@ -5,34 +5,10 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL=/bin/sh
include ../config/Makefile.${SYS_NAME}
UKERNELDIR=../libuafs/
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
UKSRCS=nsafs.h nsafs.c securehash.c UKSRCS=nsafs.h nsafs.c securehash.c

View File

@ -12,33 +12,8 @@
# # supported (if not supported, don't show it). # # supported (if not supported, don't show it).
# ###################################################################### # ######################################################################
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
UKERNELDIR = ../libuafs/
CFLAGS=-I. -I${srcdir} ${OPTMZ} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}

View File

@ -5,34 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
KERNELDIR = ../libafs/
UKERNELDIR = ../libuafs/
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
OBJS= cellconfig.o ktc.o userok.o writeconfig.o authcon.o \ OBJS= cellconfig.o ktc.o userok.o writeconfig.o authcon.o \
acfg_errors.o ktc_errors.o acfg_errors.o ktc_errors.o
KOBJS= cellconfig.o ktc.krb.o userok.o writeconfig.o authcon.o \ KOBJS= cellconfig.o ktc.krb.o userok.o writeconfig.o authcon.o \

View File

@ -5,16 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DESTDIR=@DESTDIR@ srcdir=@srcdir@
SRCDIR=@SRCDIR@ include @TOP_OBJDIR@/src/config/Makefile.config
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
include ../../config/Makefile.${SYS_NAME}
SRCDIR=
OPTIMIZE=-O
INCDIRS= -I./ -I${DESTDIR}/include INCDIRS= -I./ -I${DESTDIR}/include
LDIRS= -L${DESTDIR}/lib -L${DESTDIR}/lib/afs -L${DESTDIR}/lib/rx LDIRS= -L${DESTDIR}/lib -L${DESTDIR}/lib/afs -L${DESTDIR}/lib/rx

View File

@ -5,32 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL=/bin/sh
include ../config/Makefile.${SYS_NAME}
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
CFLAGS=-g -I. -I${srcdir} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-g -I. -I${srcdir} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}
RPCINCLS=${TOP_INCDIR}/lwp.h ${TOP_INCDIR}/rx/rx.h bosint.h RPCINCLS=${TOP_INCDIR}/lwp.h ${TOP_INCDIR}/rx/rx.h bosint.h

View File

@ -5,29 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
OPTIMIZE=-O
INCDIRS=-I${TOP_INCDIR} -I.. INCDIRS=-I${TOP_INCDIR} -I..
LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L.. LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L..

View File

@ -5,31 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CFLAGS=-g -w -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} -I${TOP_INCDIR}/afs ${XCFLAGS} CFLAGS=-g -w -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} -I${TOP_INCDIR}/afs ${XCFLAGS}
LDFLAGS = ${XLDFLAGS} LDFLAGS = ${XLDFLAGS}

View File

@ -5,32 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
CFLAGS=-I. -I${srcdir} ${DBUG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-I. -I${srcdir} ${DBUG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}

View File

@ -5,32 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
CFLAGS=-I. -I${srcdir} ${DBUG} -w -I${TOP_OBJDIR}/src/config \ CFLAGS=-I. -I${srcdir} ${DBUG} -w -I${TOP_OBJDIR}/src/config \
-I${TOP_INCDIR} -I${TOP_INCDIR}/afs ${XCFLAGS} -I${TOP_INCDIR} -I${TOP_INCDIR}/afs ${XCFLAGS}

View File

@ -6,32 +6,8 @@
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# */ # */
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
CFLAGS=-g -I. -I${srcdir} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-g -I. -I${srcdir} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}
LDFLAGS = -g ${XLDFLAGS} LDFLAGS = -g ${XLDFLAGS}

View File

@ -5,31 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CFLAGS=-g -w ${INCDIRS} ${XCFLAGS} CFLAGS=-g -w ${INCDIRS} ${XCFLAGS}

View File

@ -5,29 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
CFLAGS=-g -w -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-g -w -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}
LDFLAGS = -g ${XLDFLAGS} LDFLAGS = -g ${XLDFLAGS}
@ -42,8 +22,6 @@ LIBS=${TOP_LIBDIR}/libbubasics.a \
${TOP_LIBDIR}/util.a \ ${TOP_LIBDIR}/util.a \
${XLIBS} ${XLIBS}
include ../config/Makefile.${SYS_NAME}
all: ${TOP_LIBDIR}/libbutm.a all: ${TOP_LIBDIR}/libbutm.a
install: ${DESTDIR}${libdir}/afs/libbutm.a install: ${DESTDIR}${libdir}/afs/libbutm.a

544
src/cf/osconf.m4 Normal file
View File

@ -0,0 +1,544 @@
AC_DEFUN(OPENAFS_OSCONF, [
dnl defaults, override in case below as needed
DBG="-g"
OPTMZ="-O2"
XCFLAGS="-O2"
SHLIB_SUFFIX="so"
CC="cc"
MT_CC="cc"
XLIBS="${LIB_AFSDB}"
dnl standard programs
AC_PROG_RANLIB
AC_CHECK_PROGS(AS, as, [${am_missing_run}as])
AC_CHECK_PROGS(AR, ar, [${am_missing_run}ar])
AC_CHECK_PROGS(MV, mv, [${am_missing_run}mv])
AC_CHECK_PROGS(RM, rm, [${am_missing_run}rm])
AC_CHECK_PROGS(LD, ld, [${am_missing_run}ld])
AC_CHECK_PROGS(CP, cp, [${am_missing_run}cp])
AC_CHECK_PROGS(STRIP, strip, [${am_missing_run}strip])
AC_CHECK_PROGS(LORDER, lorder, [${am_missing_run}lorder])
case $AFS_SYSNAME in
alpha_dux40)
CSTATIC="-non_shared"
LWP_OPTMZ="-O2"
MT_CFLAGS='-D_REENTRANT=1 -pthread -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-pthread -lpthread -lmach -lexc -lc"
TXLIBS="-lcurses"
XCFLAGS="-D_NO_PROTO -DOSF"
;;
alpha_dux50)
CSTATIC="-non_shared"
LWP_OPTMZ="-O2"
MT_CFLAGS='-D_REENTRANT=1 -pthread -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-pthread -lpthread -lmach -lexc -lc"
TXLIBS="-lcurses"
XCFLAGS="-D_NO_PROTO -DOSF"
;;
alpha_linux22)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
alpha_linux24)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
hp_ux102)
AS="/usr/ccs/bin/as"
CC="/opt/ansic/bin/cc -Ae"
DBM="/lib/libndbm.a"
LD="/bin/ld"
LEX="/opt/langtools/bin/lex"
LWP_OPTMZ="-O"
MT_CC="/opt/ansic/bin/cc -Ae"
MT_CFLAGS='-D_POSIX_C_SOURCE=199506L -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-L/opt/dce/lib -ldce"
MV="/bin/mv"
OPTMZ="-O"
PAM_CFLAGS="+DA1.0 +z -Wl,+k"
PAM_LIBS="/usr/lib/libpam.1"
RANLIB="/usr/bin/ranlib"
RM="/bin/rm"
SHLIB_LDFLAGS="-b -Bsymbolic"
SHLIB_SUFFIX="sl"
TXLIBS="/usr/lib/libHcurses.a"
VFSCK_CFLAGS="-D_FILE64"
XCFLAGS0="-ldld -lc -Wp,-H200000 -Wl,-a,archive -DAUTH_DBM_LOG +z -Wl,+k -D_LARGEFILE64_SOURCE"
XCFLAGS64="${XCFLAGS0} +DA2.0W"
XCFLAGS="${XCFLAGS0} +DA1.0"
YACC="/opt/langtools/bin/yacc"
;;
hp_ux110)
AS="/usr/ccs/bin/as"
CC="/opt/ansic/bin/cc"
DBM="/lib/libndbm.a"
LD="/bin/ld "
LEX="/opt/langtools/bin/lex"
LWP_OPTMZ="-O"
MT_CC="$CC"
MT_CFLAGS='-D_POSIX_C_SOURCE=199506L -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread"
MV="/bin/mv"
OPTMZ="-O"
PAM_CFLAGS="+DA1.0 +z -Wl,+k"
PAM_LIBS="/usr/lib/libpam.1"
RANLIB="/usr/bin/ranlib"
RM="/bin/rm"
SHLIB_LDFLAGS="-b -Bsymbolic"
SHLIB_SUFFIX="sl"
TXLIBS="/usr/lib/libHcurses.a"
VFSCK_CFLAGS="-I/usr/old/usr/include -D_FILE64"
XCFLAGS0="-ldld -lc -Wp,-H200000 -Wl,-a,archive -DAUTH_DBM_LOG +z -Wl,+k -D_LARGEFILE64_SOURCE"
XCFLAGS64="${XCFLAGS0} +DA2.0W"
XCFLAGS="${XCFLAGS0} +DA1.0"
XLIBELFA="-lelf"
XLIBS="${LIB_AFSDB} -lnsl"
YACC="/opt/langtools/bin/yacc"
;;
i386_fbsd_42)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-pthread"
PAM_CFLAGS="-O2 -pipe -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2 -pipe"
XLIBS="${LIB_AFSDB} -lcompat"
YACC="bison -y"
;;
i386_linux22)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
i386_linux24)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
;;
i386_obsd29)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-pthread"
PAM_CFLAGS="-O2 -pipe -fpic"
SHLIB_CFLAGS="-fpic"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libcurses.a"
XCFLAGS="-O2"
XLIBS="${LIB_AFSDB} -lcompat"
YACC="yacc"
;;
parisc_linux24)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
ppc_darwin_12)
KINCLUDES='-I$(KROOT)/System/Library/Frameworks/Kernel.framework/Headers'
LEX="lex -l"
LWP_OPTMZ="-g"
OPTMZ="-g"
REGEX_OBJ="regex.o"
XCFLAGS="-traditional-cpp"
;;
ppc_darwin_13)
KINCLUDES='-I$(KROOT)/System/Library/Frameworks/Kernel.framework/Headers'
LEX="lex -l"
LWP_OPTMZ="-O2"
REGEX_OBJ="regex.o"
XCFLAGS="-no-precomp"
;;
ppc_linux22)
INSTALL="install"
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
ppc_linux24)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
rs_aix42)
DBG=""
LEX="lex"
LIBSYS_AIX_EXP="afsl.exp"
LWP_OPTMZ="-O"
MT_CC="xlc_r"
MT_CFLAGS='-DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthreads"
OPTMZ="-O"
SHLIB_SUFFIX="o"
TXLIBS="-lcurses"
XCFLAGS="-K -D_NO_PROTO -D_NONSTD_TYPES -D_MBI=void"
XLIBS="${LIB_AFSDB} -ldl"
;;
s390_linux22)
CC="gcc"
LD="gcc"
LEX="flex -l"
MT_CC="$CC"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
OPTMZ="-O"
PAM_CFLAGS="-O -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O -g"
YACC="bison -y"
;;
s390_linux24)
CC="gcc"
LD="gcc"
LEX="flex -l"
MT_CC="$CC"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
OPTMZ="-O"
PAM_CFLAGS="-O -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O -g"
YACC="bison -y"
;;
sgi_62)
FSINCLUDES="-I/usr/include/sys/fs"
LEX="lex"
LWP_OPTMZ="-O"
MT_CFLAGS='-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread"
OPTMZ="-O"
TXLIBS="-lcurses"
XCFLAGS64="-64 -mips3"
XCFLAGS="-o32"
XLDFLAGS64="-64"
XLDFLAGS="-o32"
;;
sgi_63)
FSINCLUDES="-I/usr/include/sys/fs"
LEX="lex"
LWP_OPTMZ="-O"
MT_CFLAGS='-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread"
OPTMZ="-O"
TXLIBS="-lcurses"
XCFLAGS64="-D_BSD_COMPAT -64 -mips3"
XCFLAGS="-D_OLD_TERMIOS -D_BSD_COMPAT -o32"
XLDFLAGS64="-64"
XLDFLAGS="-o32"
;;
sgi_64)
FSINCLUDES="-I/usr/include/sys/fs"
LEX="lex"
LWP_OPTMZ="-O"
MT_CFLAGS='-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread"
OPTMZ="-O"
TXLIBS="-lcurses"
XCFLAGS64="-D_BSD_COMPAT -64 -mips3"
XCFLAGS="-D_OLD_TERMIOS -D_BSD_COMPAT -n32 -woff 1009,1110,1116,1164,1171,1177,1183,1185,1204,1233,1515,1516,1548,1169,1174,1177,1196,1498,1506,1552"
XLDFLAGS64="-64"
XLDFLAGS="-n32"
;;
sgi_65)
CC="/usr/bin/cc"
FSINCLUDES="-I/usr/include/sys/fs"
LD="/usr/bin/ld"
LEX="lex"
MT_CC="/usr/bin/cc"
MT_CFLAGS='-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread"
OPTMZ="-O"
TXLIBS="-lcurses"
XCFLAGS64="-64 -mips3"
XCFLAGS="-n32 -mips3 -woff 1009,1110,1116,1164,1171,1177,1183,1185,1204,1233,1515,1516,1548,1169,1174,1177,1196,1498,1506,1552"
XLDFLAGS64="-64 -mips3"
XLDFLAGS="-n32 -mips3"
;;
sparc64_linux22)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
sparc64_linux24)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
sparc_linux22)
LEX="flex -l"
MT_CFLAGS='-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}'
MT_LIBS="-lpthread"
PAM_CFLAGS="-O2 -Dlinux -DLINUX_PAM -fPIC"
SHLIB_LDFLAGS="-shared -Xlinker -x"
TXLIBS="/usr/lib/libncurses.so"
XCFLAGS="-O2"
YACC="bison -y"
;;
sun4x_55)
CC="/opt/SUNWspro/bin/cc"
LEX="lex"
LWP_OPTMZ="-g"
MT_CC="/opt/SUNWspro/bin/cc"
MT_CFLAGS='-mt -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread -lsocket"
OPTMZ="-O"
SHLIB_CFLAGS="-KPIC"
TXLIBS="-lcurses"
XCFLAGS="-dy -Bdynamic"
XLIBELFA="-lelf"
XLIBKVM="-lkvm"
XLIBS="${LIB_AFSDB} -lsocket -lnsl -lintl -ldl"
LD="/usr/ccs/bin/ld"
;;
sun4x_56)
CC="/opt/SUNWspro/bin/cc"
LEX="lex"
LWP_OPTMZ="-g"
MT_CC="/opt/SUNWspro/bin/cc"
MT_CFLAGS='-mt -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread -lsocket"
OPTMZ="-O"
PAM_CFLAGS="-KPIC"
PAM_LIBS="-lc -lpam -lsocket -lnsl -lm"
SHLIB_CFLAGS="-KPIC"
SHLIB_LDFLAGS="-G -Bsymbolic"
TXLIBS="-L/usr/ccs/lib -lcurses"
XCFLAGS="-dy -Bdynamic"
XLIBELFA="-lelf"
LD="/usr/ccs/bin/ld"
XLIBKVM="-lkvm"
XLIBS="${LIB_AFSDB} -lsocket -lnsl -lintl -ldl"
;;
sun4x_57)
CC="/opt/SUNWspro/bin/cc"
LEX="lex"
LD="/usr/ccs/bin/ld"
LWP_OPTMZ="-g"
MT_CC="/opt/SUNWspro/bin/cc"
MT_CFLAGS='-mt -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread -lsocket"
OPTMZ="-O"
PAM_CFLAGS="-KPIC"
PAM_LIBS="-lc -lpam -lsocket -lnsl -lm"
SHLIB_CFLAGS="-KPIC"
SHLIB_LDFLAGS="-G -Bsymbolic"
TXLIBS="-lcurses"
XCFLAGS64='${XCFLAGS} -xarch=v9'
XCFLAGS="-dy -Bdynamic"
XLIBELFA="-lelf"
XLIBKVM="-lkvm"
XLIBS="${LIB_AFSDB} -lsocket -lnsl -lintl -ldl"
;;
sun4x_58)
CC="/opt/SUNWspro/bin/cc"
LEX="lex"
LD="/usr/ccs/bin/ld"
LWP_OPTMZ="-g"
MT_CC="/opt/SUNWspro/bin/cc"
MT_CFLAGS='-mt -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread -lsocket"
OPTMZ="-O"
PAM_CFLAGS="-KPIC"
PAM_LIBS="-lc -lpam -lsocket -lnsl -lm"
SHLIB_CFLAGS="-KPIC"
SHLIB_LDFLAGS="-G -Bsymbolic"
TXLIBS="-lcurses"
XCFLAGS64='${XCFLAGS} -xarch=v9'
XCFLAGS="-dy -Bdynamic"
XLIBELFA="-lelf"
XLIBKVM="-lkvm"
XLIBS="${LIB_AFSDB} -lsocket -lnsl -lintl -ldl"
;;
sun4x_59)
CC="/opt/SUNWspro/bin/cc"
LEX="lex"
LWP_OPTMZ="-g"
LD="/usr/ccs/bin/ld"
MT_CC="/opt/SUNWspro/bin/cc"
MT_CFLAGS='-mt -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread -lsocket"
OPTMZ="-O"
PAM_CFLAGS="-KPIC"
PAM_LIBS="-lc -lpam -lsocket -lnsl -lm"
SHLIB_CFLAGS="-KPIC"
SHLIB_LDFLAGS="-G -Bsymbolic"
TXLIBS="-lcurses"
XCFLAGS64='${XCFLAGS} -xarch=v9'
XCFLAGS="-dy -Bdynamic"
XLIBELFA="-lelf"
XLIBKVM="-lkvm"
XLIBS="${LIB_AFSDB} -lsocket -lnsl -lintl -ldl"
;;
sunx86_58)
CC="/opt/SUNWspro/bin/cc"
LEX="lex"
LWP_OPTMZ="-g"
LD="/usr/ccs/bin/ld"
MT_CC="/opt/SUNWspro/bin/cc"
MT_CFLAGS='-mt -DAFS_PTHREAD_ENV ${XCFLAGS}'
MT_LIBS="-lpthread -lsocket"
OPTMZ="-O"
PAM_CFLAGS="-KPIC"
PAM_LIBS="-lc -lpam -lsocket -lnsl -lm"
SHLIB_CFLAGS="-KPIC"
SHLIB_LDFLAGS="-G -Bsymbolic"
TXLIBS="-lcurses"
XCFLAGS64='${XCFLAGS} -xarch=v9'
XCFLAGS="-dy -Bdynamic"
XLIBELFA="-lelf"
XLIBKVM="-lkvm"
XLIBS="${LIB_AFSDB} -lsocket -lnsl -lintl -ldl"
;;
esac
#
# Special build targets
#
case $AFS_SYSNAME in
sgi_6*)
XFS_SIZE_CHECK="xfs_size_check"
install_XFS_SIZE_CHECK='$(DESTDIR)${afssrvsbindir}/xfs_size_check'
dest_XFS_SIZE_CHECK='$(DEST)/root.server/usr/afs/bin/xfs_size_check'
AC_SUBST(XFS_SIZE_CHECK)
AC_SUBST(install_XFS_SIZE_CHECK)
AC_SUBST(dest_XFS_SIZE_CHECK)
;;
sun4x_*|sunx86_*)
FS_CONV_SOL26="fs_conv_sol26"
install_FS_CONV_SOL26='$(DESTDIR)${afssrvsbindir}/fs_conv_sol26'
dest_FS_CONV_SOL26='$(DEST)/root.server/usr/afs/bin/fs_conv_sol26'
AC_SUBST(FS_CONV_SOL26)
AC_SUBST(install_FS_CONV_SOL26)
AC_SUBST(dest_FS_CONV_SOL26)
;;
alpha_dux*)
FS_CONV_OSF40D="fs_conv_dux40d"
install_FS_CONV_OSF40D='$(DESTDIR)${afssrvsbindir}/fs_conv_dux40d'
dest_FS_CONV_OSF40D='$(DEST)/root.server/usr/afs/bin/fs_conv_sdux40d'
AC_SUBST(FS_CONV_OSF40D)
AC_SUBST(install_FS_CONV_OSF40D)
AC_SUBST(dest_FS_CONV_OSF40D)
;;
esac
AC_SUBST(AR)
AC_SUBST(AS)
AC_SUBST(CP)
AC_SUBST(DBG)
AC_SUBST(FSINCLUDES)
AC_SUBST(LD)
AC_SUBST(LEX)
AC_SUBST(LWP_OPTMZ)
AC_SUBST(MT_CC)
AC_SUBST(MT_CFLAGS)
AC_SUBST(MT_LIBS)
AC_SUBST(MV)
AC_SUBST(OPTMZ)
AC_SUBST(PAM_CFLAGS)
AC_SUBST(PAM_LIBS)
AC_SUBST(RANLIB)
AC_SUBST(REGEX_OBJ)
AC_SUBST(RM)
AC_SUBST(SHLIB_CFLAGS)
AC_SUBST(SHLIB_LDFLAGS)
AC_SUBST(SHLIB_SUFFIX)
AC_SUBST(TXLIBS)
AC_SUBST(VFSCK_CFLAGS)
AC_SUBST(XCFLAGS)
AC_SUBST(XCFLAGS64)
AC_SUBST(XLDFLAGS)
AC_SUBST(XLDFLAGS64)
AC_SUBST(XLIBELFA)
AC_SUBST(XLIBKVM)
AC_SUBST(XLIBS)
AC_SUBST(YACC)
])

View File

@ -5,32 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
LIBOBJS=cmd_errors.o cmd.o LIBOBJS=cmd_errors.o cmd.o
LIB64OBJS=cmd_errors64.o cmd64.o LIB64OBJS=cmd_errors64.o cmd64.o

View File

@ -5,14 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DESTDIR=@DESTDIR@ srcdir=@srcdir@
SRCDIR=@SRCDIR@ include @TOP_OBJDIR@/src/config/Makefile.config
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
OPTIMIZE=-O
LDIRS= -L${DESTDIR}/lib -L${DESTDIR}/lib/afs -L.. LDIRS= -L${DESTDIR}/lib -L${DESTDIR}/lib/afs -L..
LIBS=-lcmd -lcom_err -lafsutil LIBS=-lcmd -lcom_err -lafsutil

View File

@ -4,33 +4,8 @@
# Copyright 1987, 1989 MIT Student Information Processing Board # Copyright 1987, 1989 MIT Student Information Processing Board
# For copyright info, see mit-sipb-cr.h. # For copyright info, see mit-sipb-cr.h.
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
UKERNELDIR=../libuafs/
CFLAGS=${OPTMZ} -I${TOP_INCDIR} -I${TOP_OBJDIR}/src/config -I. -I${srcdir} ${XCFLAGS} CFLAGS=${OPTMZ} -I${TOP_INCDIR} -I${TOP_OBJDIR}/src/config -I. -I${srcdir} ${XCFLAGS}

View File

@ -1,26 +1,7 @@
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
OPTIMIZE=-O
INCDIRS=-I${TOP_INCDIR} -I.. INCDIRS=-I${TOP_INCDIR} -I..
LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L.. LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L..

View File

@ -1,30 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
AFS_OSTYPE = DUX
MT_CC=cc
XCFLAGS= -D_NO_PROTO -DOSF
MT_CFLAGS=-D_REENTRANT=1 -pthread -DAFS_PTHREAD_ENV ${XCFLAGS}
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
XLIBS=@LIB_AFSDB@
MTLIBS=-pthread -lpthread -lmach -lexc -lc
NON_SHARED=-non_shared
TXLIBS= -lcurses
LWP_OPTMZ=-O2
OPTMZ=-O2
DBG=-g3
CSTATIC=-non_shared
RANLIB=/bin/true
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
CP=cp
#this is for the vol package
FS_CONV_OSF40D = fs_conv_dux40D
install_FS_CONV_OSF40D = $(DESTDIR)${afssrvsbindir}/fs_conv_dux40D
dest_FS_CONV_OSF40D = $(DEST)/root.server/usr/afs/bin/fs_conv_dux40D

View File

@ -1,30 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
AFS_OSTYPE = DUX
MT_CC=cc
XCFLAGS= -D_NO_PROTO -DOSF
MT_CFLAGS=-D_REENTRANT=1 -pthread -DAFS_PTHREAD_ENV ${XCFLAGS}
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
XLIBS=@LIB_AFSDB@
MTLIBS=-pthread -lpthread -lmach -lexc -lc
NON_SHARED=-non_shared
TXLIBS= -lcurses
LWP_OPTMZ=-O2
OPTMZ=-O2
DBG=-g3
CP=cp
CSTATIC=-non_shared
RANLIB=/bin/true
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#this is for the vol package
FS_CONV_OSF40D = fs_conv_dux40D
install_FS_CONV_OSF40D = $(DESTDIR)${afssrvsbindir}/fs_conv_dux40D
dest_FS_CONV_OSF40D = $(DEST)/root.server/usr/afs/bin/fs_conv_dux40D

View File

@ -1,45 +0,0 @@
# Makefile for Linux 2.2.16 kernel on Alpha with glibc 2.2
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = 2.2.16
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,45 +0,0 @@
# Makefile for Linux 2.2.16 kernel on Alpha with glibc 2.2
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
#LINUX_VERS = 2.2.16
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -0,0 +1,107 @@
#
# Installation vars
#
afsbackupdir=@afsbackupdir@
afsbosconfigdir=@afsbosconfigdir@
afsconfdir=@afsconfdir@
afsdbdir=@afsdbdir@
afslocaldir=@afslocaldir@
afslogsdir=@afslogsdir@
afssrvbindir=@afssrvbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afssrvsbindir=@afssrvsbindir@
bindir=@bindir@
exec_prefix=@exec_prefix@
includedir=@includedir@
libdir=@libdir@
libexecdir=@libexecdir@
localstatedir=@localstatedir@
mandir=@mandir@
prefix=@prefix@
sbindir=@sbindir@
sysconfdir=@sysconfdir@
viceetcdir=@viceetcdir@
#
# Programs and other defines
#
AR = @AR@
AS = @AS@
CC = @CC@
CFLAGS = @CFLAGS@
CP = @CP@
DARWIN_INFOFILE=@DARWIN_INFOFILE@
DBG = @DBG@
DEST = @DEST@
FSINCLUDES = @FSINCLUDES@
LD = @LD@
LEX = @LEX@
LIB_AFSDB = @LIB_AFSDB@
LIBS = @LIBS@
LINUX_KERNEL_PATH = @LINUX_KERNEL_PATH@
LINUX_VERSION = @LINUX_VERSION@
LINUX_VERS = @LINUX_VERSION@
LWP_OPTMZ = @LWP_OPTMZ@
MKAFS_OSTYPE = @MKAFS_OSTYPE@
MT_CC = @MT_CC@
MT_CFLAGS = @MT_CFLAGS@
MT_LIBS = @MT_LIBS@
MV = @MV@
OPTMZ = @OPTMZ@
PAM_CFLAGS = @PAM_CFLAGS@
PAM_LIBS = @PAM_LIBS@
RANLIB = @RANLIB@
REGEX_OBJ = @REGEX_OBJ@
RM = @RM@
SHLIB_CFLAGS = @SHLIB_CFLAGS@
SHLIB_LDFLAGS = @SHLIB_LDFLAGS@
SHLIB_SUFFIX = @SHLIB_SUFFIX@
SYS_NAME = @AFS_SYSNAME@
TOP_INCDIR = @TOP_INCDIR@
TOP_LIBDIR = @TOP_LIBDIR@
TOP_OBJDIR = @TOP_OBJDIR@
TOP_SRCDIR = @TOP_SRCDIR@
TXLIBS = @TXLIBS@
VPATH = ${srcdir}
XCFLAGS = @XCFLAGS@
XLDFLAGS64 = @XLDFLAGS64@
XLDFLAGS = @XLDFLAGS@
XLIBELFA = @XLIBELFA@
XLIBKVM = @XLIBKVM@
XLIBS = @XLIBS@
YACC = @YACC@
#
# Special build targets
#
dest_FS_CONV_OSF40D = @dest_FS_CONV_OSF40D@
install_FS_CONV_OSF40D = @install_FS_CONV_OSF40D@
FS_CONV_OSF40D = @FS_CONV_OSF40D@
dest_FS_CONV_SOL26 = @dest_FS_CONV_SOL26@
install_FS_CONV_SOL26 = @install_FS_CONV_SOL26@
FS_CONV_SOL26 = @FS_CONV_SOL26@
dest_XFS_SIZE_CHECK = @dest_XFS_SIZE_CHECK@
install_XFS_SIZE_CHECK = @install_XFS_SIZE_CHECK@
XFS_SIZE_CHECK = @XFS_SIZE_CHECK@
#
# Paths to build dirs
#
# Could be absolute, but leaving as relative for now
#UKERNELDIR = ${TOP_OBJDIR}/src/libuafs
#KERNELDIR = ${TOP_OBJDIR}/src/libafs
UKERNELDIR = ../libuafs
KERNELDIR = ../libafs
#
# Build helper apps
#
COMPILE_ET = ${TOP_OBJDIR}/src/comerr/compile_et
INSTALL = ${TOP_OBJDIR}/src/pinstall/pinstall
INSTALLex = ${INSTALL} -m 755
RXGEN = ${TOP_OBJDIR}/src/rxgen/rxgen
SHELL = /bin/sh

View File

@ -1,37 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
AFS_OSTYPE = HPUX
CC=/opt/ansic/bin/cc -Ae
MT_CC=/opt/ansic/bin/cc -Ae
XCFLAGS0=-ldld -lc -Wp,-H200000 -Wl,-a,archive -DAUTH_DBM_LOG +z -Wl,+k -D_LARGEFILE64_SOURCE
XCFLAGS=${XCFLAGS0} +DA1.0
XCFLAGS64=${XCFLAGS0} +DA2.0W
VFSCK_CFLAGS=-D_FILE64
MT_CFLAGS=-D_POSIX_C_SOURCE=199506L -DAFS_PTHREAD_ENV ${XCFLAGS}
XLIBS=@LIB_AFSDB@
XLIBELFA=
TXLIBS=/usr/lib/libHcurses.a
MTLIBS=-L/opt/dce/lib -ldce
SHLIB_SUFFIX=sl
LWP_OPTMZ=-O
OPTMZ=-O
DBG=-g
RANLIB=ranlib
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
RM=/bin/rm
CP=/bin/cp
AR=/bin/ar
AS=/usr/ccs/bin/as
MV=/bin/mv
LD=/bin/ld
LEX=/opt/langtools/bin/lex
DBM=/lib/libndbm.a
PAM_CFLAGS=+DA1.0 +z -Wl,+k
SHARE_LDFLAGS=-b -Bsymbolic
PAMLIBS=/usr/lib/libpam.1
YACC=/opt/langtools/bin/yacc

View File

@ -1,37 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
AFS_OSTYPE = HPUX
CC=/opt/ansic/bin/cc
MT_CC=/opt/ansic/bin/cc
XCFLAGS0=-ldld -lc -Wp,-H200000 -Wl,-a,archive -DAUTH_DBM_LOG +z -Wl,+k -D_LARGEFILE64_SOURCE
XCFLAGS=${XCFLAGS0} +DA1.0
XCFLAGS64=${XCFLAGS0} +DA2.0W
VFSCK_CFLAGS=-I/usr/old/usr/include -D_FILE64
MT_CFLAGS=-D_POSIX_C_SOURCE=199506L -DAFS_PTHREAD_ENV ${XCFLAGS}
XLIBS=@LIB_AFSDB@ -lnsl
XLIBELFA=-lelf
TXLIBS=/usr/lib/libHcurses.a
MTLIBS=-lpthread
SHLIB_SUFFIX=sl
LWP_OPTMZ=-O
OPTMZ=-O
DBG=-g
RANLIB=/usr/bin/ranlib
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
RM=/bin/rm
CP=/bin/cp
AR=/bin/ar
AS=/usr/ccs/bin/as
MV=/bin/mv
LD=/bin/ld
LEX=/opt/langtools/bin/lex
DBM=/lib/libndbm.a
PAM_CFLAGS=+DA1.0 +z -Wl,+k
SHARE_LDFLAGS=-b -Bsymbolic
PAMLIBS=/usr/lib/libpam.1
YACC=/opt/langtools/bin/yacc

View File

@ -7,8 +7,8 @@
# Keep macros within each section in sorted order for clean diff displays. # Keep macros within each section in sorted order for clean diff displays.
# #
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories. # MKAFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = DJGPP MKAFS_OSTYPE = DJGPP
# compilation and link editor flags # compilation and link editor flags
#DBG=-g #DBG=-g
@ -18,12 +18,12 @@ OPTMZ=-O2
XCFLAGS= ${DBG} -Dfds_bits=fd_bits -DAFS_AFSDB_ENV -DAFS_FREELANCE_CLIENT XCFLAGS= ${DBG} -Dfds_bits=fd_bits -DAFS_AFSDB_ENV -DAFS_FREELANCE_CLIENT
MT_CFLAGS=${XCFLAGS} MT_CFLAGS=${XCFLAGS}
XLDFLAGS= XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x SHLIB_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so SHLIB_SUFFIX=so
SHLIB_CFLAGS= SHLIB_CFLAGS=
# #
# libraries # libraries
MTLIBS= MT_LIBS=
TXLIBS= TXLIBS=
XLIBS= XLIBS=
# #

View File

@ -1,47 +0,0 @@
# Copyright 1998 Transarc Corporation
#
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = FBSD
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
# LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
# LINUX_VERS = 2.2.5-15 2.2.10 2.2.12 2.2.12-20 2.2.13 2.2.14
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -pipe -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2 -pipe
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-pthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@ -lcompat
#
# programs
AR=ar
AS=as
CP=cp
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,51 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = @LINUX_VERSION@
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS= @LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,43 +0,0 @@
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = @LINUX_VERSION@
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS= @LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,39 +0,0 @@
# Copyright 1998 Transarc Corporation
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = OBSD
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -pipe -fpic
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS= -fpic
#
# libraries
MTLIBS=-pthread
TXLIBS= /usr/lib/libcurses.a
XLIBS=@LIB_AFSDB@ -lcompat
#
# programs
AR=ar
AS=as
CP=cp
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
#
# Other OS specific requirements
#
YACC =yacc
LEX =flex -l

View File

@ -5,32 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
KERNELDIR=../libafs
UKERNELDIR=../libuafs
SHELL=/bin/sh
include Makefile.${SYS_NAME}
CFLAGS=-g -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-g -I${TOP_INCDIR} ${XCFLAGS}
@ -107,9 +83,6 @@ ${UKERNELDIR}/afs/afs_sysnames.h ${KERNELDIR}/afs/afs_sysnames.h ${DEST}/include
${UKERNELDIR}/afs/stds.h ${KERNELDIR}/afs/stds.h ${DEST}/include/afs/stds.h ${DESTDIR}${includedir}/afs/stds.h ${TOP_INCDIR}/afs/stds.h: ${srcdir}/stds.h ${UKERNELDIR}/afs/stds.h ${KERNELDIR}/afs/stds.h ${DEST}/include/afs/stds.h ${DESTDIR}${includedir}/afs/stds.h ${TOP_INCDIR}/afs/stds.h: ${srcdir}/stds.h
$(INST) $(INST)
${UKERNELDIR}/config/Makefile.${SYS_NAME} ${KERNELDIR}/config/Makefile.${SYS_NAME}: Makefile.${SYS_NAME}
$(INST)
${UKERNELDIR}/afs/icl.h ${KERNELDIR}/afs/icl.h ${DEST}/include/afs/icl.h ${DESTDIR}${includedir}/afs/icl.h ${TOP_INCDIR}/afs/icl.h: ${srcdir}/icl.h ${UKERNELDIR}/afs/icl.h ${KERNELDIR}/afs/icl.h ${DEST}/include/afs/icl.h ${DESTDIR}${includedir}/afs/icl.h ${TOP_INCDIR}/afs/icl.h: ${srcdir}/icl.h
$(INST) $(INST)
@ -143,7 +116,6 @@ kinstall: \
${KERNELDIR}/afs/param.h \ ${KERNELDIR}/afs/param.h \
${KERNELDIR}/afs/stds.h \ ${KERNELDIR}/afs/stds.h \
${KERNELDIR}/afs/afs_sysnames.h \ ${KERNELDIR}/afs/afs_sysnames.h \
${KERNELDIR}/config/Makefile.${SYS_NAME} \
${KERNELDIR}/afs/afs_args.h \ ${KERNELDIR}/afs/afs_args.h \
${KERNELDIR}/afs/icl.h \ ${KERNELDIR}/afs/icl.h \
${KERNELDIR}/afs/AFS_component_version_number.c ${KERNELDIR}/afs/AFS_component_version_number.c
@ -153,7 +125,6 @@ ukinstall: \
${UKERNELDIR}/afs/param.h \ ${UKERNELDIR}/afs/param.h \
${UKERNELDIR}/afs/stds.h \ ${UKERNELDIR}/afs/stds.h \
${UKERNELDIR}/afs/afs_sysnames.h \ ${UKERNELDIR}/afs/afs_sysnames.h \
${UKERNELDIR}/config/Makefile.${SYS_NAME} \
${UKERNELDIR}/afs/afs_args.h \ ${UKERNELDIR}/afs/afs_args.h \
${UKERNELDIR}/afs/icl.h \ ${UKERNELDIR}/afs/icl.h \
${UKERNELDIR}/afs/venus.h \ ${UKERNELDIR}/afs/venus.h \

View File

@ -1,43 +0,0 @@
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = @LINUX_VERSION@
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS= @LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,43 +0,0 @@
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = DARWIN
#
#
# compilation and link editor flags
XCFLAGS=-traditional-cpp
#MT_CFLAGS=-D_REENTRANT -DAFS_PTHREAD_ENV ${XCFLAGS}
#MT_CC=cc
KROOT=
KINCLUDES=-I$(KROOT)/System/Library/Frameworks/Kernel.framework/Headers
#SHARE_LDFLAGS =
LWP_OPTMZ=-g
OPTMZ=-g
DBG=-g
REGEX_OBJ=regex.o
#
# libraries
XLIBS=@LIB_AFSDB@
TXLIBS=
#MTLIBS=
#XLIBELFA=
#XLIBKVM=
#
SHLIB_SUFFIX=
SHLIB_CFLAGS=
#
# programs
AR=ar
AS=as
CC=cc
CP=cp
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
LEX=lex -l
LD= ld
LORDER = lorder
MV=mv
RANLIB=ranlib
RM=rm
STRIP= strip

View File

@ -1,43 +0,0 @@
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = DARWIN
#
#
# compilation and link editor flags
XCFLAGS=-no-precomp
#MT_CFLAGS=-D_REENTRANT -DAFS_PTHREAD_ENV ${XCFLAGS}
#MT_CC=cc
KROOT=
KINCLUDES=-I$(KROOT)/System/Library/Frameworks/Kernel.framework/Headers
#SHARE_LDFLAGS =
LWP_OPTMZ=-O2
OPTMZ=-O2
DBG=-g
REGEX_OBJ=regex.o
#
# libraries
XLIBS=@LIB_AFSDB@
TXLIBS=
#MTLIBS=
#XLIBELFA=
#XLIBKVM=
#
SHLIB_SUFFIX=
SHLIB_CFLAGS=
#
# programs
AR=ar
AS=as
CC=cc
CP=cp
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
LEX=lex -l
LD= ld
LORDER = lorder
MV=mv
RANLIB=ranlib
RM=rm
STRIP= strip

View File

@ -1,44 +0,0 @@
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = $(KSRC)
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = $(KVERS)
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
INSTALL=install
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,44 +0,0 @@
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = 2.4.0-test9
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,39 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = AIX
# compilation and link editor flags
OPTMZ=-O
LWP_OPTMZ=-O
DBG=
XCFLAGS=-K -D_NO_PROTO -D_NONSTD_TYPES -D_MBI=void
MT_CFLAGS=-DAFS_PTHREAD_ENV ${XCFLAGS}
SHLIB_SUFFIX=o
SHLIB_CFLAGS=
#
# libraries
TXLIBS=-lcurses
MTLIBS=-lpthreads
XLIBS=@LIB_AFSDB@ -ldl
#
# programs
MT_CC=xlc_r
AR=ar
AS=as
CP=cp
LD=ld
LEX=lex
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
LIBSYS_AIX_EXP=afsl.exp

View File

@ -1,48 +0,0 @@
# Copyright 1998 Transarc Corporation
#
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = 2.2.16
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O
#PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
PAM_CFLAGS= -O -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O -g
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=gcc
MT_CC=gcc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,48 +0,0 @@
# Copyright 1998 Transarc Corporation
#
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = 2.4.3
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O
#PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
PAM_CFLAGS= -O -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O -g
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=gcc
MT_CC=gcc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,46 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = IRIX
# compilation and link editor flags
DBG=-g
FSINCLUDES=-I/usr/include/sys/fs
LWP_OPTMZ=-O
OPTMZ=-O
XCFLAGS=-o32
# The -mips3 for XCFLAGS64 allows code to run on R4000 as well as R8000+.
XCFLAGS64 =-64 -mips3
MT_CFLAGS=-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV ${XCFLAGS}
XLDFLAGS=-o32
XLDFLAGS64=-64
#
# libraries
TXLIBS= -lcurses
XLIBS=@LIB_AFSDB@
MTLIBS=-lpthread
SHLIB_SUFFIX=so
#
# programs
AR=ar
AS=as
CP=cp
MT_CC=cc
LD=ld
LEX=lex
MV=mv
RANLIB=/bin/true
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# This is for the vol package
XFS_SIZE_CHECK = xfs_size_check
install_XFS_SIZE_CHECK = $(DESTDIR)${afssrvsbindir}/xfs_size_check
dest_XFS_SIZE_CHECK = $(DEST)/root.server/usr/afs/bin/xfs_size_check

View File

@ -1,41 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = IRIX
# compilation and link editor flags
DBG=-g
FSINCLUDES=-I/usr/include/sys/fs
LWP_OPTMZ=-O
OPTMZ=-O
XCFLAGS=-D_OLD_TERMIOS -D_BSD_COMPAT -o32
# The -mips3 for XCFLAGS64 allows code to run on R4000 as well as R8000+.
XCFLAGS64 =-D_BSD_COMPAT -64 -mips3
MT_CFLAGS=-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV ${XCFLAGS}
XLDFLAGS=-o32
XLDFLAGS64=-64
#
# libraries
TXLIBS= -lcurses
XLIBS=@LIB_AFSDB@
MTLIBS=-lpthread
SHLIB_SUFFIX=so
#
# programs
AR=ar
AS=as
CP=cp
MT_CC=cc
LD=ld
LEX=lex
MV=mv
RANLIB=/bin/true
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall

View File

@ -1,47 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = IRIX
# compilation and link editor flags
DBG=-g
FSINCLUDES=-I/usr/include/sys/fs
LWP_OPTMZ=-O
OPTMZ=-O
XCFLAGS=-D_OLD_TERMIOS -D_BSD_COMPAT -n32 -woff 1009,1110,1116,1164,1171,1177,1183,1185,1204,1233,1515,1516,1548,1169,1174,1177,1196,1498,1506,1552
# The -mips3 for XCFLAGS64 allows code to run on R4000 as well as R8000+.
XCFLAGS64 =-D_BSD_COMPAT -64 -mips3
XLDFLAGS=-n32
XLDFLAGS64=-64
MT_CFLAGS=-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV ${XCFLAGS}
#
# libraries
TXLIBS= -lcurses
XLIBS=@LIB_AFSDB@
MTLIBS=-lpthread
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# programs
AR=ar
AS=as
CP=cp
MT_CC=cc
LD=ld
LEX=lex
MV=mv
RANLIB=/bin/true
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# This is for the vol package
XFS_SIZE_CHECK = xfs_size_check
install_XFS_SIZE_CHECK = $(DESTDIR)${afssrvsbindir}/xfs_size_check
dest_XFS_SIZE_CHECK = $(DEST)/root.server/usr/afs/bin/xfs_size_check

View File

@ -1,47 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = IRIX
# Pointers to destination and source directories
# compilation and link editor flags
DBG=-g
FSINCLUDES=-I/usr/include/sys/fs
OPTMZ=-O
XCFLAGS=-n32 -mips3 -woff 1009,1110,1116,1164,1171,1177,1183,1185,1204,1233,1515,1516,1548,1169,1174,1177,1196,1498,1506,1552
# The -mips3 for XCFLAGS64 allows code to run on R4000 as well as R8000+.
XCFLAGS64 =-64 -mips3
XLDFLAGS=-n32 -mips3
XLDFLAGS64=-64 -mips3
MT_CFLAGS=-D_SGI_MP_SOURCE -DAFS_PTHREAD_ENV ${XCFLAGS}
#
# libraries
TXLIBS= -lcurses
XLIBS=@LIB_AFSDB@
MTLIBS=-lpthread
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# programs
AR=ar
AS=as
CP=cp
MT_CC=/usr/bin/cc
LD=/usr/bin/ld
LEX=lex
MV=mv
RANLIB=/bin/true
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# This is for the vol package
XFS_SIZE_CHECK = xfs_size_check
install_XFS_SIZE_CHECK = $(DESTDIR)${afssrvsbindir}/xfs_size_check
dest_XFS_SIZE_CHECK = $(DEST)/root.server/usr/afs/bin/xfs_size_check

View File

@ -1,47 +0,0 @@
# Copyright 1998 Transarc Corporation
#
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = 2.2.14
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,47 +0,0 @@
# Copyright 1998 Transarc Corporation
#
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = 2.2.14
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,47 +0,0 @@
# Copyright 1998 Transarc Corporation
#
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = LINUX
# Base directory for linux kernel source. Actually a prefix which is complete
# when LINUX_VERS is appended to it.
LINUX_SRCDIR = /usr/src/linux-
# Default list of Linux kernels to build. Build will run only if all
# can be built. To build a different set, specify LINUX_VERS to make.
LINUX_VERS = 2.2.14
#
# compilation and link editor flags
DBG=-g
OPTMZ=-O2
PAM_CFLAGS = -O2 -Dlinux -DLINUX_PAM -fPIC
# Put -O2 here to _ensure_ all Makefiles pick it up.
XCFLAGS= -O2
MT_CFLAGS=-DAFS_PTHREAD_ENV -pthread -D_REENTRANT ${XCFLAGS}
XLDFLAGS=
SHARE_LDFLAGS = -shared -Xlinker -x
SHLIB_SUFFIX=so
SHLIB_CFLAGS=
#
# libraries
MTLIBS=-lpthread
TXLIBS= /usr/lib/libncurses.so
XLIBS=@LIB_AFSDB@
#
# programs
AR=ar
AS=as
CP=cp
LD=ld
MT_CC=cc
MV=mv
RANLIB=ranlib
RM=rm
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# Other OS specific requirements
#
YACC = bison -y
LEX = flex -l

View File

@ -1,47 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = SOLARIS
# compilation and link editor flags
XCFLAGS=-dy -Bdynamic
MT_CFLAGS=-mt -DAFS_PTHREAD_ENV ${XCFLAGS}
LWP_OPTMZ=-g
OPTMZ=-O
DBG=-g
#
# libraries
XLIBS=@LIB_AFSDB@ -lsocket -lnsl -lintl -ldl
TXLIBS=-lcurses
MTLIBS=-lpthread -lsocket
XLIBELFA=-lelf
XLIBKVM=-lkvm
SHLIB_SUFFIX=so
SHLIB_CFLAGS=-KPIC
#
# programs
AR=/usr/ccs/bin/ar
AS=as
CC=/opt/SUNWspro/bin/cc
MT_CC=/opt/SUNWspro/bin/cc
CP=/bin/cp
LEX=lex
LD= /usr/ccs/bin/ld
LORDER = /usr/ccs/bin/lorder
MV=mv
RANLIB=/bin/true
RM=rm
STRIP= /usr/ccs/bin/strip
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# this is for the vol package
FS_CONV_SOL26 = fs_conv_sol26
install_FS_CONV_SOL26 = $(DESTDIR)${afssrvsbindir}/fs_conv_sol26
dest_FS_CONV_SOL26 = $(DEST)/root.server/usr/afs/bin/fs_conv_sol26

View File

@ -1,51 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = SOLARIS
#
# compilation and link editor flags
XCFLAGS=-dy -Bdynamic
MT_CFLAGS=-mt -DAFS_PTHREAD_ENV ${XCFLAGS}
PAM_CFLAGS = -KPIC
PAMLIBS= -lc -lpam -lsocket -lnsl -lm
SHARE_LDFLAGS = -G -Bsymbolic
LWP_OPTMZ=-g
OPTMZ=-O
DBG=-g
#
# libraries
XLIBS=@LIB_AFSDB@ -lsocket -lnsl -lintl -ldl
TXLIBS=-L/usr/ccs/lib -lcurses
MTLIBS=-lpthread -lsocket
XLIBELFA=-lelf
XLIBKVM=-lkvm
#
SHLIB_SUFFIX=so
SHLIB_CFLAGS=-KPIC
#
# programs
AR=/usr/ccs/bin/ar
AS=as
CC=/opt/SUNWspro/bin/cc
MT_CC=/opt/SUNWspro/bin/cc
CP=/bin/cp
LEX=lex
LD= /usr/ccs/bin/ld
LORDER = /usr/ccs/bin/lorder
MV=mv
RANLIB=/bin/true
RM=rm
STRIP= /usr/ccs/bin/strip
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# this is for the vol package
FS_CONV_SOL26 = fs_conv_sol26
install_FS_CONV_SOL26 = $(DESTDIR)${afssrvsbindir}/fs_conv_sol26
dest_FS_CONV_SOL26 = $(DEST)/root.server/usr/afs/bin/fs_conv_sol26

View File

@ -1,55 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = SOLARIS
#
# compilation and link editor flags
XCFLAGS=-dy -Bdynamic
MT_CFLAGS=-mt -DAFS_PTHREAD_ENV ${XCFLAGS}
PAM_CFLAGS = -KPIC
PAMLIBS= -lc -lpam -lsocket -lnsl -lm
SHARE_LDFLAGS = -G -Bsymbolic
LWP_OPTMZ=-g
OPTMZ=-O
DBG=-g
## Compilation flags for 64 bit Solaris
XCFLAGS64 = ${XCFLAGS} -xarch=v9
#
# libraries
XLIBS=@LIB_AFSDB@ -lsocket -lnsl -lintl -ldl
TXLIBS=-lcurses
MTLIBS=-lpthread -lsocket
XLIBELFA=-lelf
XLIBKVM=-lkvm
#
SHLIB_SUFFIX=so
SHLIB_CFLAGS=-KPIC
#
# programs
AR=/usr/ccs/bin/ar
AS=as
CC=/opt/SUNWspro/bin/cc
MT_CC=/opt/SUNWspro/bin/cc
CP=/bin/cp
LEX=lex
LD= /usr/ccs/bin/ld
LORDER = /usr/ccs/bin/lorder
MV=mv
RANLIB=/bin/true
RM=rm
STRIP= /usr/ccs/bin/strip
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# this is for the vol package
FS_CONV_SOL26 = fs_conv_sol26
install_FS_CONV_SOL26 = $(DESTDIR)${afssrvsbindir}/fs_conv_sol26
dest_FS_CONV_SOL26 = $(DEST)/root.server/usr/afs/bin/fs_conv_sol26

View File

@ -1,48 +0,0 @@
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = SOLARIS
#
# compilation and link editor flags
XCFLAGS=-dy -Bdynamic
MT_CFLAGS=-mt -DAFS_PTHREAD_ENV ${XCFLAGS}
PAM_CFLAGS = -KPIC
PAMLIBS= -lc -lpam -lsocket -lnsl -lm
SHARE_LDFLAGS = -G -Bsymbolic
LWP_OPTMZ=-g
OPTMZ=-O
DBG=-g
## Compilation flags for 64 bit Solaris
XCFLAGS64 = ${XCFLAGS} -xarch=v9
#
# libraries
XLIBS=@LIB_AFSDB@ -lsocket -lnsl -lintl -ldl
TXLIBS=-lcurses
MTLIBS=-lpthread -lsocket
XLIBELFA=-lelf
XLIBKVM=-lkvm
#
SHLIB_SUFFIX=so
SHLIB_CFLAGS=-KPIC
#
# programs
AR=/usr/ccs/bin/ar
AS=as
CC=/opt/SUNWspro/bin/cc
MT_CC=/opt/SUNWspro/bin/cc
CP=/bin/cp
LEX=lex
LD= /usr/ccs/bin/ld
LORDER = /usr/ccs/bin/lorder
MV=mv
RANLIB=/bin/true
RM=rm
STRIP= /usr/ccs/bin/strip
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# this is for the vol package
FS_CONV_SOL26 = fs_conv_sol26
install_FS_CONV_SOL26 = $(DESTDIR)${afssrvsbindir}/fs_conv_sol26
dest_FS_CONV_SOL26 = $(DEST)/root.server/usr/afs/bin/fs_conv_sol26

View File

@ -1,48 +0,0 @@
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = SOLARIS
#
# compilation and link editor flags
XCFLAGS=-dy -Bdynamic
MT_CFLAGS=-mt -DAFS_PTHREAD_ENV ${XCFLAGS}
PAM_CFLAGS = -KPIC
PAMLIBS= -lc -lpam -lsocket -lnsl -lm
SHARE_LDFLAGS = -G -Bsymbolic
LWP_OPTMZ=-g
OPTMZ=-O
DBG=-g
## Compilation flags for 64 bit Solaris
XCFLAGS64 = ${XCFLAGS} -xarch=v9
#
# libraries
XLIBS=@LIB_AFSDB@ -lsocket -lnsl -lintl -ldl
TXLIBS=-lcurses
MTLIBS=-lpthread -lsocket
XLIBELFA=-lelf
XLIBKVM=-lkvm
#
SHLIB_SUFFIX=so
SHLIB_CFLAGS=-KPIC
#
# programs
AR=/usr/ccs/bin/ar
AS=as
CC=/opt/SUNWspro/bin/cc
MT_CC=/opt/SUNWspro/bin/cc
CP=/bin/cp
LEX=lex
LD= /usr/ccs/bin/ld
LORDER = /usr/ccs/bin/lorder
MV=mv
RANLIB=/bin/true
RM=rm
STRIP= /usr/ccs/bin/strip
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall
#
# this is for the vol package
FS_CONV_SOL26 = fs_conv_sol26
install_FS_CONV_SOL26 = $(DESTDIR)${afssrvsbindir}/fs_conv_sol26
dest_FS_CONV_SOL26 = $(DEST)/root.server/usr/afs/bin/fs_conv_sol26

View File

@ -1,23 +0,0 @@
# Copyright 2000, International Business Machines Corporation and others.
# All Rights Reserved.
#
# This software has been released under the terms of the IBM Public
# License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html
# Keep macros within each section in sorted order for clean diff displays.
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = NCR
# compilation and link editor flags
#
# libraries
XLIBS=@LIB_AFSDB@
#
# programs
AR = /usr/ccs/bin/ar
LD = /usr/ccs/bin/ld
LORDER = /usr/ccs/bin/lorder
STRIP= /usr/ccs/bin/strip
INSTALL=${TOP_OBJDIR}/src/pinstall/pinstall

View File

@ -1,52 +0,0 @@
# Keep macros within each section in sorted order for clean diff displays.
#
# AFS_OSTYPE used to indicate suffixes and os specific subdirectories.
AFS_OSTYPE = SOLARIS
#
# compilation and link editor flags
XCFLAGS=-dy -Bdynamic
MT_CFLAGS=-mt -DAFS_PTHREAD_ENV ${XCFLAGS}
PAM_CFLAGS = -KPIC
PAMLIBS= -lc -lpam -lsocket -lnsl -lm
SHARE_LDFLAGS = -G -Bsymbolic
LWP_OPTMZ=-g
OPTMZ=-O
DBG=-g
## Compilation flags for 64 bit Solaris
XCFLAGS64 = ${XCFLAGS} -xarch=v9
#
# libraries
XLIBS=@LIB_AFSDB@ -lsocket -lnsl -lintl -ldl
TXLIBS=-lcurses
MTLIBS=-lpthread -lsocket
XLIBELFA=-lelf
XLIBKVM=-lkvm
#
SHLIB_SUFFIX=so
SHLIB_CFLAGS=-KPIC
#
# programs
AR=/usr/ccs/bin/ar
AS=as
CC=/opt/SUNWspro/bin/cc
MT_CC=/opt/SUNWspro/bin/cc
CP=/bin/cp
LEX=lex
LD= /usr/ccs/bin/ld
LORDER = /usr/ccs/bin/lorder
MV=mv
RANLIB=/bin/true
RM=rm
STRIP= /usr/ccs/bin/strip
INSTALL=${TOP_SRCDIR}/pinstall/pinstall
#
# this is for the vol package
FS_CONV_SOL26 = fs_conv_sol26
install_FS_CONV_SOL26 = $(DESTDIR)${afssrvsbindir}/fs_conv_sol26
dest_FS_CONV_SOL26 = $(DEST)/root.server/usr/afs/bin/fs_conv_sol26
#
# This is the XBSA make flag and pathname to XBSA header files (xbsa.h)
XBSA_FLAGS=-Dxbsa
XBSADIR=/opt/tivoli/tsm/client/api/bin/xopen

View File

@ -5,33 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
OPTMZ= -g
CFLAGS=-I. -I${srcdir} ${OPTMZ} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}
LDFLAGS = ${OPTMZ} ${XLDFLAGS} LDFLAGS = ${OPTMZ} ${XLDFLAGS}

View File

@ -22,32 +22,8 @@
# target machine for run-time code (may cross-compile), # target machine for run-time code (may cross-compile),
# override as needed # override as needed
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
UKERNELDIR=../libuafs/
LDFLAGS = ${XLDFLAGS} LDFLAGS = ${XLDFLAGS}

View File

@ -1,12 +1,5 @@
srcdir=@srcdir@
DESTDIR=@DESTDIR@ include @TOP_OBJDIR@/src/config/Makefile.config
SRCDIR=@SRCDIR@
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
# Test programs # Test programs
PROGS = \ PROGS = \

View File

@ -5,13 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DESTDIR=@DESTDIR@ srcdir=@srcdir@
SRCDIR=@SRCDIR@ include @TOP_OBJDIR@/src/config/Makefile.config
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
# #
# Makefile is a no op, we don't do des stubs any more # Makefile is a no op, we don't do des stubs any more

View File

@ -5,34 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
KERNELDIR = ../libafs
UKERNELDIR = ../libuafs
INCDIRS=-I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XINCLS} INCDIRS=-I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XINCLS}
CFLAGS = ${OPTMZ} ${INCDIRS} ${XCFLAGS} CFLAGS = ${OPTMZ} ${INCDIRS} ${XCFLAGS}

View File

@ -5,17 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DESTDIR=@DESTDIR@ srcdir=@srcdir@
SRCDIR=@SRCDIR@ include @TOP_OBJDIR@/src/config/Makefile.config
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
KERNELDIR = ../libafs/
INSTALL = ${SRCDIR}/bin/install
INCDIRS= -I${DESTDIR}/include ${XINCLS} INCDIRS= -I${DESTDIR}/include ${XINCLS}
LIBS = ${SRCDIR}/lib/afs/libdir.a ${SRCDIR}/lib/afs/util.a LIBS = ${SRCDIR}/lib/afs/libdir.a ${SRCDIR}/lib/afs/util.a

View File

@ -5,37 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# $Locker$
#
# Makefile for EXPORT kernel extension, and friends
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
include ../config/Makefile.${SYS_NAME}
KERNELDIR = ../libafs/
UKERNELDIR = ../libuafs/
DEFS = DEFS =
INCS = -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} INCS = -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR}
CFLAGS = ${OPTMZ} ${DEFS} ${INCS} CFLAGS = ${OPTMZ} ${DEFS} ${INCS}

View File

@ -5,30 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CFLAGS=-g -I. -I${srcdir} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-g -I. -I${srcdir} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}
LDFLAGS = -g ${XLDFLAGS} LDFLAGS = -g ${XLDFLAGS}

View File

@ -5,33 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
include ../config/Makefile.${SYS_NAME}
SHELL = /bin/sh
KERNELDIR = ../libafs
UKERNELDIR = ../libuafs
OBJS=afsaux.o afscbint.cs.o afscbint.ss.o afscbint.xdr.o afsint.cs.o afsint.ss.o afsint.xdr.o OBJS=afsaux.o afscbint.cs.o afscbint.ss.o afscbint.xdr.o afsint.cs.o afsint.ss.o afsint.xdr.o
CFLAGS=-I. -I${srcdir} ${DBUG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-I. -I${srcdir} ${DBUG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}

View File

@ -5,34 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# Makefile for fsprobe and its test program, all part of the AFS
# navigation and monitoring tool (gator).
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CFLAGS=-g -I. \ CFLAGS=-g -I. \
-I${TOP_OBJDIR}/src/config \ -I${TOP_OBJDIR}/src/config \

View File

@ -14,33 +14,12 @@
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
# #
# @(#)Makefile 5.8 (Berkeley) 9/22/88
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
include ../config/Makefile.version include ../config/Makefile.version
include ../config/Makefile.${SYS_NAME}
AFSLIBS=${TOP_LIBDIR}/libkauth.a ${TOP_LIBDIR}/libprot.a ${TOP_LIBDIR}/libubik.a \ AFSLIBS=${TOP_LIBDIR}/libkauth.a ${TOP_LIBDIR}/libprot.a ${TOP_LIBDIR}/libubik.a \
${TOP_LIBDIR}/libauth.a ${TOP_LIBDIR}/librxkad.a ${TOP_LIBDIR}/libsys.a \ ${TOP_LIBDIR}/libauth.a ${TOP_LIBDIR}/librxkad.a ${TOP_LIBDIR}/libsys.a \

View File

@ -7,30 +7,8 @@
# Makefile for gtx, a display-independent, object-oriented window toolkit. # Makefile for gtx, a display-independent, object-oriented window toolkit.
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL=/bin/sh
include ../config/Makefile.${SYS_NAME}
CFLAGS=-I. -I${srcdir} ${DBUG} -I${TOP_OBJDIR}/src/config \ CFLAGS=-I. -I${srcdir} ${DBUG} -I${TOP_OBJDIR}/src/config \
-I${TOP_INCDIR} -I${TOP_INCDIR}/afs ${XCFLAGS} -I${TOP_INCDIR} -I${TOP_INCDIR}/afs ${XCFLAGS}

View File

@ -1,27 +1,5 @@
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL=/bin/sh
include ../config/Makefile.${SYS_NAME}
INCLUDES = -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} INCLUDES = -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR}
DEFINES = ${INCLUDES} DEFINES = ${INCLUDES}

View File

@ -5,33 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
UKERNELDIR = ../libuafs
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
CFLAGS=-I. -I${srcdir} ${OPTMZ} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${XCFLAGS}
LDFLAGS = ${OPTMZ} ${XLDFLAGS} LDFLAGS = ${OPTMZ} ${XLDFLAGS}
@ -93,7 +68,6 @@ all: kaserver kas kpwvalid klog klog.krb knfs kpasswd rebuild kdb \
${UKERNELDIR}/afs/authclient.c \ ${UKERNELDIR}/afs/authclient.c \
${UKERNELDIR}/afs/user.c \ ${UKERNELDIR}/afs/user.c \
${UKERNELDIR}/afs/kautils.h \ ${UKERNELDIR}/afs/kautils.h \
${UKERNELDIR}/afs/kaserver.h \
${UKERNELDIR}/afs/kaaux.c \ ${UKERNELDIR}/afs/kaaux.c \
${UKERNELDIR}/afs/token.c \ ${UKERNELDIR}/afs/token.c \
${UKERNELDIR}/afs/kalocalcell.c \ ${UKERNELDIR}/afs/kalocalcell.c \
@ -276,9 +250,6 @@ ${UKERNELDIR}/afs/user.c: user.c
${UKERNELDIR}/afs/kautils.h: kautils.h ${UKERNELDIR}/afs/kautils.h: kautils.h
${INSTALL} $? $@ ${INSTALL} $? $@
${UKERNELDIR}/afs/kaserver.h: kaserver.h
${INSTALL} $? $@
${UKERNELDIR}/afs/kaaux.c: kaaux.c ${UKERNELDIR}/afs/kaaux.c: kaaux.c
${INSTALL} $? $@ ${INSTALL} $? $@

View File

@ -5,12 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DESTDIR=@DESTDIR@ srcdir=@srcdir@
SRCDIR=@SRCDIR@ include @TOP_OBJDIR@/src/config/Makefile.config
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
OPTIMIZE=-O
INCDIRS= -I${DESTDIR}/include -I.. INCDIRS= -I${DESTDIR}/include -I..
LDIRS= -L${DESTDIR}/lib -L${DESTDIR}/lib/afs -L.. LDIRS= -L${DESTDIR}/lib -L${DESTDIR}/lib/afs -L..

View File

@ -5,38 +5,12 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CFLAGS = ${OPTMZ} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} \ CFLAGS = ${OPTMZ} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} \
-I${TOP_INCDIR}/afs ${LIBS} ${XCFLAGS} -I${TOP_INCDIR}/afs ${LIBS} ${XCFLAGS}
KERNELDIR = ../libafs
UKERNELDIR = ../libuafs
# #
# Main targets # Main targets
# #

View File

@ -5,29 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
OPTIMIZE=-O
INCDIRS=-I${TOP_INCDIR} -I.. INCDIRS=-I${TOP_INCDIR} -I..
LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L.. LDIRS=-L${TOP_LIBDIR} -L${DESTDIR}/lib/afs -L..

View File

@ -5,29 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
include ../config/Makefile.${SYS_NAME}
all: ${TOP_INCDIR}/afs/afs_Admin.h all: ${TOP_INCDIR}/afs/afs_Admin.h

View File

@ -5,34 +5,12 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS}
CCRULE = ${CC} ${CFLAGS} -c $? CCRULE = ${CC} ${CFLAGS} -c $?
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXKAD = ../../rxkad RXKAD = ../../rxkad
AUTH = ../../auth AUTH = ../../auth
BOZO = ../../bozo BOZO = ../../bozo

View File

@ -5,30 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS}

View File

@ -5,30 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS}
CCRULE = ${CC} ${CFLAGS} -c $? CCRULE = ${CC} ${CFLAGS} -c $?

View File

@ -5,12 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DESTDIR=@DESTDIR@ srcdir=@srcdir@
SRCDIR=@SRCDIR@ include @TOP_OBJDIR@/src/config/Makefile.config
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
include ../../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS = ${OPTMZ} ${DBG} -DAFS_PTHREAD_ENV -I${SRCDIR}/include ${MT_CFLAGS} CFLAGS = ${OPTMZ} ${DBG} -DAFS_PTHREAD_ENV -I${SRCDIR}/include ${MT_CFLAGS}

View File

@ -5,30 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS}

View File

@ -5,30 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} \ CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} \

View File

@ -5,30 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS}

View File

@ -5,27 +5,10 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
include ../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS = ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} CFLAGS = ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS}
@ -66,67 +49,67 @@ SAMPLELIBS =\
${TOP_LIBDIR}/libafsrpc.a ${TOP_LIBDIR}/libafsrpc.a
cm_client_config: cm_client_config.o $(SAMPLELIBS) cm_client_config: cm_client_config.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
cm_list_cells: cm_list_cells.o $(SAMPLELIBS) cm_list_cells: cm_list_cells.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
cm_local_cell: cm_local_cell.o $(SAMPLELIBS) cm_local_cell: cm_local_cell.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
cm_server_prefs: cm_server_prefs.o $(SAMPLELIBS) cm_server_prefs: cm_server_prefs.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxdebug_basic_stats: rxdebug_basic_stats.o $(SAMPLELIBS) rxdebug_basic_stats: rxdebug_basic_stats.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxdebug_conns: rxdebug_conns.o $(SAMPLELIBS) rxdebug_conns: rxdebug_conns.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxdebug_peers: rxdebug_peers.o $(SAMPLELIBS) rxdebug_peers: rxdebug_peers.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxdebug_rx_stats: rxdebug_rx_stats.o $(SAMPLELIBS) rxdebug_rx_stats: rxdebug_rx_stats.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxdebug_supported_stats: rxdebug_supported_stats.o $(SAMPLELIBS) rxdebug_supported_stats: rxdebug_supported_stats.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxdebug_version: rxdebug_version.o $(SAMPLELIBS) rxdebug_version: rxdebug_version.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_clear_peer: rxstat_clear_peer.o $(SAMPLELIBS) rxstat_clear_peer: rxstat_clear_peer.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_clear_process: rxstat_clear_process.o $(SAMPLELIBS) rxstat_clear_process: rxstat_clear_process.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_disable_peer: rxstat_disable_peer.o $(SAMPLELIBS) rxstat_disable_peer: rxstat_disable_peer.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_disable_process: rxstat_disable_process.o $(SAMPLELIBS) rxstat_disable_process: rxstat_disable_process.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_enable_peer: rxstat_enable_peer.o $(SAMPLELIBS) rxstat_enable_peer: rxstat_enable_peer.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_enable_process: rxstat_enable_process.o $(SAMPLELIBS) rxstat_enable_process: rxstat_enable_process.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_get_peer: rxstat_get_peer.o $(SAMPLELIBS) rxstat_get_peer: rxstat_get_peer.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_get_process: rxstat_get_process.o $(SAMPLELIBS) rxstat_get_process: rxstat_get_process.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_get_version: rxstat_get_version.o $(SAMPLELIBS) rxstat_get_version: rxstat_get_version.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_query_peer: rxstat_query_peer.o $(SAMPLELIBS) rxstat_query_peer: rxstat_query_peer.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
rxstat_query_process: rxstat_query_process.o $(SAMPLELIBS) rxstat_query_process: rxstat_query_process.o $(SAMPLELIBS)
$(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MTLIBS) $(XLIBS) $(CC) $(LDFLAGS) -o $@ $@.o $(SAMPLELIBS) $(MT_LIBS) $(XLIBS)
####################################################################### #######################################################################
all test tests: $(SAMPLEPROGS) all test tests: $(SAMPLEPROGS)

View File

@ -5,27 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
include ../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS = ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} CFLAGS = ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS}
@ -55,7 +37,7 @@ AFSCPOBJS =\
afscp: afscp.o $(AFSCPOBJS) $(AFSCPLIBS) afscp: afscp.o $(AFSCPOBJS) $(AFSCPLIBS)
$(CC) $(CFLAGS) -o afscp afscp.o $(AFSCPOBJS) \ $(CC) $(CFLAGS) -o afscp afscp.o $(AFSCPOBJS) \
-L${TOP_LIBDIR} $(AFSCPLIBS) ${MTLIBS} $(XLIBS) -L${TOP_LIBDIR} $(AFSCPLIBS) ${MT_LIBS} $(XLIBS)
####################################################################### #######################################################################
all test tests: afscp all test tests: afscp

View File

@ -5,30 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../../config/Makefile.${SYS_NAME}
CC = ${MT_CC} CC = ${MT_CC}
CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} -I${TOP_INCDIR}/afs ${MT_CFLAGS} CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} -I${TOP_INCDIR}/afs ${MT_CFLAGS}

View File

@ -5,30 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# MakefileProto for AIX systems
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
include config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:
AFS_OS_OBJS = \ AFS_OS_OBJS = \

View File

@ -3,29 +3,8 @@
# #
# MakefileProto for Digital Unix systems # MakefileProto for Digital Unix systems
# #
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
DARWIN_INFOFILE=../@DARWIN_INFOFILE@
include config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:

View File

@ -5,30 +5,8 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# MakefileProto for Digital Unix systems
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
include config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:

View File

@ -1,29 +1,8 @@
#/* Copyright (C) 1995, 1989 Transarc Corporation - All rights reserved */ #/* Copyright (C) 1995, 1989 Transarc Corporation - All rights reserved */
# #
# MakefileProto for FreeBSD systems
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
# include config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:
AFS_OS_OBJS = \ AFS_OS_OBJS = \

View File

@ -5,30 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# MakefileProto for HP systems
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
include config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:
AFS_OS_OBJS = \ AFS_OS_OBJS = \

View File

@ -5,30 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# MakefileProto for IRIX systems
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
include config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:
AFS_OS_OBJS = \ AFS_OS_OBJS = \

View File

@ -5,30 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# MakefileProto for Linux i386 systems
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
include config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:
AFS_OS_OBJS = \ AFS_OS_OBJS = \
@ -109,7 +88,6 @@ DESTDIRS=linux_destdirs
include Makefile.common include Makefile.common
LINUX_VERS=@LINUX_VERSION@
LINUX_KERNEL_PATH=@LINUX_KERNEL_PATH@ LINUX_KERNEL_PATH=@LINUX_KERNEL_PATH@
LINUX_MODULE_NAME= LINUX_MODULE_NAME=
LOCAL_SMP_DEF= LOCAL_SMP_DEF=
@ -118,7 +96,7 @@ setup:
-$(RM) -f h net netinet sys rpc -$(RM) -f h net netinet sys rpc
-ln -fs rx rpc -ln -fs rx rpc
for m in ${MPS} ; do \ for m in ${MPS} ; do \
KDIR=$(KOBJ)-${LINUX_VERS}${LINUX_MODULE_NAME}-$$m; \ KDIR=$(KOBJ)-${LINUX_VERSION}${LINUX_MODULE_NAME}-$$m; \
mkdir -p $${KDIR}; \ mkdir -p $${KDIR}; \
ln -fs ../Makefile $${KDIR}/Makefile ; \ ln -fs ../Makefile $${KDIR}/Makefile ; \
ln -fs ../Makefile.common $${KDIR}/Makefile.common; \ ln -fs ../Makefile.common $${KDIR}/Makefile.common; \
@ -157,7 +135,7 @@ ${COMPDIRS} ${INSTDIRS} ${DESTDIRS}:
ln -fs ${LINUX_KERNEL_PATH}/include/asm-ia64 asm ln -fs ${LINUX_KERNEL_PATH}/include/asm-ia64 asm
<all> <all>
for m in ${MPS} ; do \ for m in ${MPS} ; do \
KDIR=${KOBJ}-${LINUX_VERS}${LINUX_MODULE_NAME}-$$m ; \ KDIR=${KOBJ}-${LINUX_VERSION}${LINUX_MODULE_NAME}-$$m ; \
echo Building in directory: $${KDIR} ; \ echo Building in directory: $${KDIR} ; \
if [ "$$m" = "MP" ] ; then \ if [ "$$m" = "MP" ] ; then \
SMP_DEF="-DAFS_SMP @RHCONFIG_MP@ ${LOCAL_SMP_DEF}" ; \ SMP_DEF="-DAFS_SMP @RHCONFIG_MP@ ${LOCAL_SMP_DEF}" ; \
@ -170,7 +148,7 @@ ${COMPDIRS} ${INSTDIRS} ${DESTDIRS}:
TARG=libafs ; \ TARG=libafs ; \
fi ; \ fi ; \
cd $${KDIR} ; \ cd $${KDIR} ; \
$(MAKE) SMP_DEF="$${SMP_DEF}" $@_$${TARG} CLIENT=${LINUX_VERS}${LINUX_MODULE_NAME} || exit $$?; \ $(MAKE) SMP_DEF="$${SMP_DEF}" $@_$${TARG} CLIENT=${LINUX_VERSION}${LINUX_MODULE_NAME} || exit $$?; \
cd ../ ; \ cd ../ ; \
done done

View File

@ -1,29 +1,8 @@
#/* Copyright (C) 1995, 1989 Transarc Corporation - All rights reserved */ #/* Copyright (C) 1995, 1989 Transarc Corporation - All rights reserved */
# #
# MakefileProto for OpenBSD systems
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
include ../config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:
AFS_OS_OBJS = \ AFS_OS_OBJS = \

View File

@ -5,30 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# MakefileProto for Solaris systems
#
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
afskerneldir=@afskerneldir@
SYS_NAME=@AFS_SYSNAME@
include config/Makefile.${SYS_NAME}
# OS specific object files: # OS specific object files:
AFS_OS_OBJS = \ AFS_OS_OBJS = \

View File

@ -7,31 +7,9 @@
# This is a pthread safe library containing ubikclient, auth, kauth. # This is a pthread safe library containing ubikclient, auth, kauth.
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CC=${MT_CC} CC=${MT_CC}
CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} \ CFLAGS=-I. -I${srcdir} ${OPTMZ} ${DBG} -I${TOP_OBJDIR}/src/config -I${TOP_INCDIR} ${MT_CFLAGS} \

View File

@ -7,31 +7,9 @@
# This is a pthread safe library containing rx, rxkad and des. # This is a pthread safe library containing rx, rxkad and des.
DEST=@DEST@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
COMPILE_ET=${TOP_OBJDIR}/src/comerr/compile_et
RXGEN=${TOP_OBJDIR}/src/rxgen/rxgen
TOP_SRCDIR=@TOP_SRCDIR@
SYS_NAME=@AFS_SYSNAME@
SHELL = /bin/sh
include ../config/Makefile.${SYS_NAME}
CC=${MT_CC} CC=${MT_CC}
INCLUDES=-I. -I${srcdir} -I${TOP_INCDIR} -I.. -I${srcdir}/../rx -I${srcdir}../des -I../des \ INCLUDES=-I. -I${srcdir} -I${TOP_INCDIR} -I.. -I${srcdir}/../rx -I${srcdir}../des -I../des \

View File

@ -5,30 +5,10 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# MakefileProto for AIX systems
#
DEST=@DEST@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
SYS_NAME=@AFS_SYSNAME@
include ../config/Makefile.${SYS_NAME}
# System specific build commands and flags # System specific build commands and flags
DEFINES= -DKERNEL -DUKERNEL DEFINES= -DKERNEL -DUKERNEL

View File

@ -5,30 +5,9 @@
# License. For details, see the LICENSE file in the top-level source # License. For details, see the LICENSE file in the top-level source
# directory or online at http://www.openafs.org/dl/license10.html # directory or online at http://www.openafs.org/dl/license10.html
# MakefileProto for Solaris systems
#
DEST=@DEST@
TOP_SRCDIR=@TOP_SRCDIR@
TOP_INCDIR=@TOP_INCDIR@
TOP_LIBDIR=@TOP_LIBDIR@
TOP_OBJDIR=@TOP_OBJDIR@
srcdir=@srcdir@ srcdir=@srcdir@
VPATH=${srcdir} include @TOP_OBJDIR@/src/config/Makefile.config
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
afssrvbindir=@afssrvbindir@
afssrvsbindir=@afssrvsbindir@
afssrvlibexecdir=@afssrvlibexecdir@
SYS_NAME=@AFS_SYSNAME@
include ../config/Makefile.${SYS_NAME}
# System specific build commands and flags # System specific build commands and flags
CC = cc CC = cc

Some files were not shown because too many files have changed in this diff Show More