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