From ac16f380e349fa39ec7e26bccb5456cb300006a5 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Sun, 14 Sep 1997 17:50:06 +0000 Subject: Pull in sources from zephyr locker. See /mit/zephyr/repository for detailed change information. --- server/Makefile.in | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 server/Makefile.in (limited to 'server/Makefile.in') diff --git a/server/Makefile.in b/server/Makefile.in new file mode 100644 index 0000000..9a4cf56 --- /dev/null +++ b/server/Makefile.in @@ -0,0 +1,67 @@ +SHELL = /bin/sh + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +datadir=@datadir@ +confdir=@confdir@ +sbindir=@sbindir@ +lsbindir=@lsbindir@ + +includedir=${prefix}/include +mandir=${prefix}/man +libdir=${exec_prefix}/lib + +srcdir=@srcdir@ +top_srcdir=@top_srcdir@ +BUILDTOP=.. +VPATH=@srcdir@ +CC=@CC@ +INSTALL=@INSTALL@ +COMPILE_ET=@COMPILE_ET@ + +DEBUG=-O +CFLAGS=${DEBUG} -DCONFDIR=\"${confdir}\" -I${top_srcdir}/h -I${BUILDTOP}/h \ + -I. @CPPFLAGS@ +LDFLAGS=${DEBUG} -L${BUILDTOP}/lib/zephyr @ET_LDFLAGS@ @LDFLAGS@ +LIBS=-lzephyr @LIBS@ -lcom_err + +OBJS= zsrv_err.o access.o acl_files.o bdump.o class.o client.o common.o \ + dispatch.o kopt.o kstuff.o main.o server.o subscr.o timer.o uloc.o \ + zstring.o realm.o version.o + +all: zephyrd + +zephyrd: ${OBJS} ${BUILDTOP}/lib/zephyr/libzephyr.a @ETDEP@ + ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS} + +zsrv_err.c zsrv_err.h: zsrv_err.et + ${COMPILE_ET} ${srcdir}/zsrv_err.et + +version.o: version.h + +version.h: always + sh ${srcdir}/new_vers.sh + +check: + +# No dependency on zephyrd, to avoid rebuilding version.o. +install: + ${INSTALL} -m 755 -s zephyrd ${DESTDIR}${sbindir} + ${INSTALL} -m 644 ${srcdir}/zephyrd.8 ${DESTDIR}${mandir}/man8 + ${INSTALL} -m 644 ${srcdir}/default.subscriptions ${DESTDIR}${confdir} + rm -f ${DESTDIR}${confdir}/acl/?*.acl + cp ${srcdir}/acl/?*.acl ${DESTDIR}${confdir}/acl + chmod 644 ${DESTDIR}${confdir}/acl/* + +clean: + rm -f ${OBJS} zephyrd zsrv_err.[ch] + +always: + +${OBJS}: zserver.h zsrv_err.h timer.h zsrv_conf.h zstring.h access.h acl.h +${OBJS}: ${top_srcdir}/h/internal.h ${top_srcdir}/h/sysdep.h +${OBJS}: ${BUILDTOP}/h/config.h ${BUILDTOP}/h/zephyr/zephyr.h +${OBJS}: ${BUILDTOP}/h/zephyr/zephyr_err.h + +.PHONY: all check install clean always + -- cgit v1.2.3