]> andersk Git - moira.git/blob - clients/mrcheck/Makefile
Used /bin/sh format instead of /bin/csh format, by accident.
[moira.git] / clients / mrcheck / Makefile
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
6 DESTDIR=
7 CFLAGS = -I../../include -O
8 LDFLAGS =  -L../../lib
9 CONFDIR = ${DESTDIR}/usr/athena
10 BINDIR = ${DESTDIR}/bin
11
12 MOIRALIB = ${LDFLAGS} -lmoira -lgdb -lcom_err
13 LIBS = ${MOIRALIB} -lkrb -ldes -lhesiod
14
15
16 SRCS =  mrcheck.c
17 OBJS = mrcheck.o
18
19 all:    mrcheck
20
21 mrcheck: ${OBJS}
22         rm -f mrcheck
23         cc ${CFLAGS} -o mrcheck ${OBJS} ${LIBS}
24
25 mrcheck.o: mrcheck.c
26
27 lint:
28         lint -I../../include *.c
29
30 clean:
31         rm -f *.o *~
32         rm -f mrcheck
33
34 install:        ${PROGS}
35         install -c -s mrcheck ${DESTDIR}/usr/athena/mrcheck
36
37 depend:
38         mkdep ${CFLAGS} ${SRCS}
39
40 # DO NOT DELETE THIS LINE -- mkdep uses it.
41
42 mrcheck.o: mrcheck.c /usr/include/stdio.h ../../include/moira.h
43 mrcheck.o: ../../include/mr_et.h ../../include/moira_site.h
44 mrcheck.o: ../../include/mit-copyright.h
This page took 0.046309 seconds and 5 git commands to generate.