]> andersk Git - moira.git/blame - clients/passwd/Makefile
added copyright message
[moira.git] / clients / passwd / Makefile
CommitLineData
a82fb69f 1# Makefile for SMS clients passwd/chfn/chpobox/chsh
13b69c6c 2#
3# MIT Project Athena
4#
5# $Source$
6# $Header$
fcb276b5 7# $Author$
a82fb69f 8#
13b69c6c 9#
10DESTDIR=
fcb276b5 11DEFINES = -O
12CFLAGS = -I../../include ${DEFINES}
13b69c6c 13CONFDIR = ${DESTDIR}/usr/athena
14BINDIR = ${DESTDIR}/bin
15
c4f3ab6d 16SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes
13b69c6c 17
c4f3ab6d 18PROGS= chfn chsh # chpobox
13b69c6c 19
20all: ${PROGS}
21
fcb276b5 22chfn: chfn.o
c4f3ab6d 23 cc -o chfn chfn.o ${SMSLIB}
13b69c6c 24
a82fb69f 25chpobox: chpobox.o
c4f3ab6d 26 cc -o chpobox chpobox.o ${SMSLIB}
13b69c6c 27
fcb276b5 28chsh: chsh.o
c4f3ab6d 29 cc -o chsh chsh.o ${SMSLIB}
13b69c6c 30
fcb276b5 31lint:
32 lint *.c
13b69c6c 33
fcb276b5 34clean:
35 rm -f *.o *~
36 rm -f ${PROGS}
37
38install: ${PROGS}
3350aea8 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.093988 seconds and 5 git commands to generate.