]> andersk Git - moira.git/blame - clients/blanche/Makefile
added copyright message
[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
19SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes
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}
37 install -s blanche ${DESTDIR}/usr/athena/blanche
This page took 0.086166 seconds and 5 git commands to generate.