]> andersk Git - moira.git/blame - clients/blanche/Makefile
make the install's -c
[moira.git] / clients / blanche / Makefile
CommitLineData
2d7360ca 1# Makefile for SMS clients blanche
2#
3# MIT Project Athena
4#
5# $Source$
6# $Header$
7# $Author$
8#
7189310c 9# (c) Copyright 1988 by the Massachusetts Institute of Technology.
10# For copying and distribution information, please see the file
11# <mit-copyright.h>.
2d7360ca 12#
7189310c 13
2d7360ca 14DESTDIR=
15DEFINES = -O
16CFLAGS = -I../../include ${DEFINES}
17BINDIR = ${DESTDIR}/bin
18
90622ad7 19SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes -lhesiod
2d7360ca 20
21PROGS= blanche
22
23all: ${PROGS}
24
25blanche: blanche.o
26 rm -f blanche
27 cc -o blanche blanche.o ${SMSLIB}
28
29lint:
30 lint *.c
31
32clean:
33 rm -f *.o *~
34 rm -f ${PROGS}
35
36install: ${PROGS}
a7ef7615 37 install -c -s blanche ${DESTDIR}/usr/athena/blanche
050550ba 38
39depend:
40 mkdep ${CFLAGS} blanche.c
41
42# DO NOT DELETE THIS LINE -- mkdep uses it.
43
44blanche.o: blanche.c ../../include/mit-copyright.h /usr/include/stdio.h
45blanche.o: /usr/include/ctype.h ../../include/sms.h /usr/include/sms_et.h
46blanche.o: ../../include/sms_app.h
This page took 0.062837 seconds and 5 git commands to generate.