[1453] in Moira

home help back first fref pref prev next nref lref last post

split clients/passwd

daemon@ATHENA.MIT.EDU (Danilo Almeida)
Wed Mar 15 20:30:32 2000

From: "Danilo Almeida" <dalmeida@MIT.EDU>
To: <moiradev@mit.edu>
Date: Wed, 15 Mar 2000 20:29:58 -0500
Message-ID: <DIEILAKKMPNAOBPOMHLBMEMICAAA.dalmeida@mit.edu>
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Please split up clients/passwd into three dirs: clients/chfn, clients/chsh,
and clients/chpobox.  We need that for the Windows build.  Just create the
dirs, move the source files, and use the Makefile.in below in each dir,
substituting chfn for chsh or chpobox as needed.

- Danilo
----
# $Id: Makefile.in,v 1.6 1999/07/12 16:20:59 danw Exp $

SHELL=/bin/sh
@SET_MAKE@

CC=@CC@
CPPFLAGS=@CPPFLAGS@
CFLAGS=@CFLAGS@
DEFS=@DEFS@
ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
LDFLAGS=@LDFLAGS@
LIBS=../lib/libmrclient.a @LIBS@
MR_LIBDEP=@MR_LIBDEP@
INSTALL=@INSTALL@
INSTALL_PROGRAM=@INSTALL_PROGRAM@

srcdir=@srcdir@
VPATH=@srcdir@
SRCTOP=@top_srcdir@
BUILDTOP=../..
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@

TARGET=chfn

OBJS=$(TARGET).o

.c.o:
	$(CC) -c $(ALL_CFLAGS) $<

all: $(TARGET)

clean:
	rm -f $(OBJS) $(TARGET)

cleandir distclean: clean
	rm -f Makefile

depend:

install: all
	$(INSTALL_PROGRAM) $(TARGET) $(bindir)

$(TARGET): $(OBJS) ../lib/libmrclient.a $(MR_LIBDEP)
	$(CC) -o $@ $(LDFLAGS) $@.o $(LIBS)


home help back first fref pref prev next nref lref last post