]> andersk Git - moira.git/blame - clients/blanche/Makefile
sms -> moira
[moira.git] / clients / blanche / Makefile
CommitLineData
8defc06b 1# Makefile for Moira clients blanche
2d7360ca 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
8defc06b 19MOIRALIB = -L../../lib -lmoira -lgdb -lcom_err -lkrb -ldes -lhesiod
2d7360ca 20
21PROGS= blanche
22
23all: ${PROGS}
24
25blanche: blanche.o
26 rm -f blanche
8defc06b 27 cc -o blanche blanche.o ${MOIRALIB}
2d7360ca 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
8defc06b 45blanche.o: /usr/include/ctype.h ../../include/moira.h ../../include/mr_et.h
46blanche.o: ../../include/moira_site.h
This page took 0.124224 seconds and 5 git commands to generate.