]> andersk Git - moira.git/blob - clients/passwd/Makefile
strip while installing
[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
9 #
10 DESTDIR=
11 DEFINES = -O
12 CFLAGS = -I../../include ${DEFINES}
13 CONFDIR = ${DESTDIR}/usr/athena
14 BINDIR = ${DESTDIR}/bin
15
16 SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes
17
18 PROGS= chfn chsh # chpobox
19
20 all:    ${PROGS}
21
22 chfn:   chfn.o
23         cc -o chfn chfn.o ${SMSLIB}
24
25 chpobox:        chpobox.o
26         cc -o chpobox chpobox.o ${SMSLIB}
27
28 chsh:   chsh.o
29         cc -o chsh chsh.o ${SMSLIB}
30
31 lint:
32         lint *.c
33
34 clean:  
35         rm -f *.o *~
36         rm -f ${PROGS}
37
38 install:        ${PROGS}
39         install -s chsh ${DESTDIR}/usr/athena/chsh
40         install -s chfn ${DESTDIR}/usr/athena/chfn
41         install -s chpobox ${DESTDIR}/usr/athena/chpobox
This page took 0.042005 seconds and 5 git commands to generate.