]> andersk Git - moira.git/blame_incremental - clients/passwd/Makefile
make the install's -c
[moira.git] / clients / passwd / Makefile
... / ...
CommitLineData
1# Makefile for SMS clients passwd/chfn/chpobox/chsh
2#
3# MIT Project Athena
4#
5# $Source$
6# $Header$
7# $Author$
8#
9# (c) Copyright 1988 by the Massachusetts Institute of Technology.
10# For copying and distribution information, please see the file
11# <mit-copyright.h>.
12#
13
14DESTDIR=
15DEFINES = -O
16CFLAGS = -I../../include ${DEFINES}
17CONFDIR = ${DESTDIR}/usr/athena
18BINDIR = ${DESTDIR}/bin
19
20SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes
21
22PROGS= chfn chsh chpobox
23
24all: ${PROGS}
25
26chfn: chfn.o
27 cc -o chfn chfn.o ${SMSLIB}
28
29chpobox: chpobox.o
30 cc -o chpobox chpobox.o ${SMSLIB}
31
32chsh: chsh.o
33 cc -o chsh chsh.o ${SMSLIB}
34
35lint:
36 lint *.c
37
38clean:
39 rm -f *.o *~
40 rm -f ${PROGS}
41
42install: ${PROGS}
43 install -s chsh ${DESTDIR}/usr/athena/chsh
44 install -s chfn ${DESTDIR}/usr/athena/chfn
45 install -s chpobox ${DESTDIR}/usr/athena/chpobox
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
55chfn.o: /usr/include/ctype.h /usr/include/errno.h ../../include/sms.h
56chfn.o: /usr/include/sms_et.h ../../include/sms_app.h
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
59chpobox.o: /usr/include/errno.h ../../include/sms.h /usr/include/sms_et.h
60chpobox.o: ../../include/sms_app.h ../../include/mit-copyright.h
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
64chsh.o: /usr/include/ctype.h /usr/include/errno.h ../../include/sms.h
65chsh.o: /usr/include/sms_et.h ../../include/sms_app.h
This page took 0.036897 seconds and 5 git commands to generate.