]> andersk Git - moira.git/blob - clients/blanche/Makefile
added server arg to sms_connect
[moira.git] / clients / blanche / Makefile
1 # Makefile for SMS clients blanche
2 #
3 #       MIT Project Athena
4 #
5 #       $Source$
6 #       $Header$
7 #       $Author$
8
9 # (c) Copyright 1988 by the Massachusetts Institute of Technology.
10 # For copying and distribution information, please see the file
11 # <mit-copyright.h>.
12 #
13
14 DESTDIR=
15 DEFINES = -O
16 CFLAGS = -I../../include ${DEFINES}
17 BINDIR = ${DESTDIR}/bin
18
19 SMSLIB = -L../../lib -lsms -lgdb -lcom_err -lkrb -ldes
20
21 PROGS= blanche
22
23 all:    ${PROGS}
24
25 blanche: blanche.o
26         rm -f blanche
27         cc -o blanche blanche.o ${SMSLIB}
28
29 lint:
30         lint *.c
31
32 clean:  
33         rm -f *.o *~
34         rm -f ${PROGS}
35
36 install:        ${PROGS}
37         install -s blanche ${DESTDIR}/usr/athena/blanche
This page took 0.037611 seconds and 5 git commands to generate.