]> andersk Git - moira.git/blame - clients/mrcheck/Makefile
Used /bin/sh format instead of /bin/csh format, by accident.
[moira.git] / clients / mrcheck / Makefile
CommitLineData
8ed18d22 1# $Header$
2# (c) Copyright 1988 by the Massachusetts Institute of Technology.
3# For copying and distribution information, please see the file
4# <mit-copyright.h>.
5
6DESTDIR=
7CFLAGS = -I../../include -O
8LDFLAGS = -L../../lib
9CONFDIR = ${DESTDIR}/usr/athena
10BINDIR = ${DESTDIR}/bin
11
8fcf8fa6 12MOIRALIB = ${LDFLAGS} -lmoira -lgdb -lcom_err
13LIBS = ${MOIRALIB} -lkrb -ldes -lhesiod
8ed18d22 14
15
1ea82edb 16SRCS = mrcheck.c
17OBJS = mrcheck.o
8ed18d22 18
1ea82edb 19all: mrcheck
8ed18d22 20
1ea82edb 21mrcheck: ${OBJS}
22 rm -f mrcheck
23 cc ${CFLAGS} -o mrcheck ${OBJS} ${LIBS}
8ed18d22 24
1ea82edb 25mrcheck.o: mrcheck.c
8ed18d22 26
27lint:
28 lint -I../../include *.c
29
30clean:
31 rm -f *.o *~
1ea82edb 32 rm -f mrcheck
8ed18d22 33
34install: ${PROGS}
cd37134d 35 install -c -s mrcheck ${DESTDIR}/usr/athena/mrcheck
050550ba 36
37depend:
38 mkdep ${CFLAGS} ${SRCS}
39
40# DO NOT DELETE THIS LINE -- mkdep uses it.
41
8fcf8fa6 42mrcheck.o: mrcheck.c /usr/include/stdio.h ../../include/moira.h
43mrcheck.o: ../../include/mr_et.h ../../include/moira_site.h
050550ba 44mrcheck.o: ../../include/mit-copyright.h
This page took 0.240479 seconds and 5 git commands to generate.