]> andersk Git - moira.git/blob - clients/blanche/Makefile
Used /bin/sh format instead of /bin/csh format, by accident.
[moira.git] / clients / blanche / Makefile
1 # Makefile for Moira 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 MOIRALIB = -L../../lib -lmoira -lgdb -lcom_err -lkrb -ldes -lhesiod
20
21 PROGS= blanche
22
23 all:    ${PROGS}
24
25 blanche: blanche.o
26         rm -f blanche
27         cc -o blanche blanche.o ${MOIRALIB}
28
29 lint:
30         lint *.c
31
32 clean:  
33         rm -f *.o *~
34         rm -f ${PROGS}
35
36 install:        ${PROGS}
37         install -c -s blanche ${DESTDIR}/usr/athena/blanche
38
39 depend:
40         mkdep ${CFLAGS} blanche.c
41
42 # DO NOT DELETE THIS LINE -- mkdep uses it.
43
44 blanche.o: blanche.c ../../include/mit-copyright.h /usr/include/stdio.h
45 blanche.o: /usr/include/ctype.h ../../include/Moira.h /usr/include/Moira_et.h
46 blanche.o: ../../include/Moira_app.h
This page took 0.100409 seconds and 5 git commands to generate.