]> andersk Git - moira.git/blame - clients/passwd/Makefile
Used /bin/sh format instead of /bin/csh format, by accident.
[moira.git] / clients / passwd / Makefile
CommitLineData
8defc06b 1# Makefile for MOIRA clients passwd/chfn/chpobox/chsh
13b69c6c 2#
3# MIT Project Athena
4#
5# $Source$
6# $Header$
fcb276b5 7# $Author$
a82fb69f 8#
f55ee110 9# (c) Copyright 1988 by the Massachusetts Institute of Technology.
10# For copying and distribution information, please see the file
11# <mit-copyright.h>.
13b69c6c 12#
f55ee110 13
13b69c6c 14DESTDIR=
fcb276b5 15DEFINES = -O
16CFLAGS = -I../../include ${DEFINES}
13b69c6c 17CONFDIR = ${DESTDIR}/usr/athena
18BINDIR = ${DESTDIR}/bin
19
8defc06b 20MOIRALIB = -L../../lib -lmoira -lgdb -lcom_err -lkrb -ldes -lhesiod
13b69c6c 21
f55ee110 22PROGS= chfn chsh chpobox
13b69c6c 23
24all: ${PROGS}
25
fcb276b5 26chfn: chfn.o
8defc06b 27 cc -o chfn chfn.o ${MOIRALIB}
13b69c6c 28
a82fb69f 29chpobox: chpobox.o
8defc06b 30 cc -o chpobox chpobox.o ${MOIRALIB}
13b69c6c 31
fcb276b5 32chsh: chsh.o
8defc06b 33 cc -o chsh chsh.o ${MOIRALIB}
13b69c6c 34
fcb276b5 35lint:
36 lint *.c
13b69c6c 37
fcb276b5 38clean:
39 rm -f *.o *~
40 rm -f ${PROGS}
41
42install: ${PROGS}
61510c10 43 install -c -s chsh ${DESTDIR}/usr/athena/chsh
44 install -c -s chfn ${DESTDIR}/usr/athena/chfn
45 install -c -s chpobox ${DESTDIR}/usr/athena/chpobox
050550ba 46
47depend:
48 mkdep ${CFLAGS} chfn.c chpobox.c chsh.c
49
50# DO NOT DELETE THIS LINE -- mkdep uses it.
51
52chfn.o: chfn.c /usr/include/sys/types.h /usr/include/stdio.h
53chfn.o: /usr/include/strings.h /usr/include/sys/file.h ../../include/krb.h
54chfn.o: ../../include/mit-copyright.h ../../include/des.h
8defc06b 55chfn.o: /usr/include/ctype.h /usr/include/errno.h ../../include/moira.h
56chfn.o: ../../include/mr_et.h ../../include/moira_site.h
050550ba 57chpobox.o: chpobox.c /usr/include/sys/types.h /usr/include/stdio.h
58chpobox.o: /usr/include/pwd.h /usr/include/strings.h /usr/include/ctype.h
8defc06b 59chpobox.o: /usr/include/errno.h ../../include/moira.h ../../include/mr_et.h
60chpobox.o: ../../include/moira_site.h ../../include/mit-copyright.h
050550ba 61chsh.o: chsh.c /usr/include/sys/types.h /usr/include/stdio.h
62chsh.o: /usr/include/strings.h /usr/include/sys/file.h ../../include/krb.h
63chsh.o: ../../include/mit-copyright.h ../../include/des.h
8defc06b 64chsh.o: /usr/include/ctype.h /usr/include/errno.h ../../include/moira.h
65chsh.o: ../../include/mr_et.h ../../include/moira_site.h
This page took 0.133267 seconds and 5 git commands to generate.