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