]> andersk Git - moira.git/blame - clients/blanche/Makefile
Initial revision
[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#
9#
10DESTDIR=
11DEFINES = -O
12CFLAGS = -I../../include ${DEFINES}
13BINDIR = ${DESTDIR}/bin
14
15SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes
16
17PROGS= blanche
18
19all: ${PROGS}
20
21blanche: blanche.o
22 rm -f blanche
23 cc -o blanche blanche.o ${SMSLIB}
24
25lint:
26 lint *.c
27
28clean:
29 rm -f *.o *~
30 rm -f ${PROGS}
31
32install: ${PROGS}
33 install -s blanche ${DESTDIR}/usr/athena/blanche
This page took 0.047988 seconds and 5 git commands to generate.