]> andersk Git - moira.git/blob - clients/passwd/Makefile
passwd now links with smslib
[moira.git] / clients / passwd / Makefile
1 # Makefile for SMS clients passwd/chfn/chpobox/chsh
2 #
3 #       MIT Project Athena
4 #
5 #       $Source$
6 #       $Header$
7 #       $Author$
8 #       $Log$
9 #       Revision 1.5  1987-08-08 23:38:10  ambar
10 #       passwd now links with smslib
11 #
12 # Revision 1.4  87/08/03  05:13:22  wesommer
13 # changed libmisc to libcom_err.a
14
15 # Revision 1.3  87/08/02  19:46:26  ambar
16 # changed name of chhome to chpobox
17
18 # Revision 1.2  87/07/31  01:24:43  ambar
19 # added install target
20
21 #
22 DESTDIR=
23 DEFINES = -O
24 CFLAGS = -I../../include ${DEFINES}
25 CONFDIR = ${DESTDIR}/usr/athena
26 BINDIR = ${DESTDIR}/bin
27
28 SMSLIB =  ../../lib/libsms.a ../../lib/libgdb.a ../../lib/libcom_err.a
29
30 PROGS= passwd chfn chpobox chsh
31
32 all:    ${PROGS}
33
34 passwd: passwd.o
35         cc -o passwd passwd.o ${SMSLIB} -lkrb -ldes
36
37 chfn:   chfn.o
38         cc -o chfn chfn.o ${SMSLIB} -lkrb -ldes
39
40 chpobox:        chpobox.o
41         cc -o chpobox chpobox.o ${SMSLIB} -lkrb -ldes
42
43 chsh:   chsh.o
44         cc -o chsh chsh.o ${SMSLIB} -lkrb -ldes
45
46 lint:
47         lint *.c
48
49 clean:  
50         rm -f *.o *~
51         rm -f ${PROGS}
52
53 install:        ${PROGS}
54         install passwd ${DESTDIR}/usr/athena/passwd
55         install chsh ${DESTDIR}/usr/athena/chsh
56         install chfn ${DESTDIR}/usr/athena/chfn
57         install chpobox ${DESTDIR}/usr/athena/chpobox
This page took 0.040989 seconds and 5 git commands to generate.