]> andersk Git - moira.git/blame - clients/passwd/Makefile
added dependancies
[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#
f55ee110 9# (c) Copyright 1988 by the Massachusetts Institute of Technology.
10# For copying and distribution information, please see the file
11# <mit-copyright.h>.
13b69c6c 12#
f55ee110 13
13b69c6c 14DESTDIR=
fcb276b5 15DEFINES = -O
16CFLAGS = -I../../include ${DEFINES}
13b69c6c 17CONFDIR = ${DESTDIR}/usr/athena
18BINDIR = ${DESTDIR}/bin
19
c4f3ab6d 20SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes
13b69c6c 21
f55ee110 22PROGS= chfn chsh chpobox
13b69c6c 23
24all: ${PROGS}
25
fcb276b5 26chfn: chfn.o
c4f3ab6d 27 cc -o chfn chfn.o ${SMSLIB}
13b69c6c 28
a82fb69f 29chpobox: chpobox.o
c4f3ab6d 30 cc -o chpobox chpobox.o ${SMSLIB}
13b69c6c 31
fcb276b5 32chsh: chsh.o
c4f3ab6d 33 cc -o chsh chsh.o ${SMSLIB}
13b69c6c 34
fcb276b5 35lint:
36 lint *.c
13b69c6c 37
fcb276b5 38clean:
39 rm -f *.o *~
40 rm -f ${PROGS}
41
42install: ${PROGS}
3350aea8 43 install -s chsh ${DESTDIR}/usr/athena/chsh
44 install -s chfn ${DESTDIR}/usr/athena/chfn
45 install -s chpobox ${DESTDIR}/usr/athena/chpobox
This page took 0.078713 seconds and 5 git commands to generate.