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