]> andersk Git - moira.git/blob - clients/mrcheck/Makefile
renamed smscheck -> mrcheck
[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 SMSLIB = ${LDFLAGS} -lsms -lgdb -lcom_err
13 LIBS = ${SMSLIB} -lcurses -ltermcap -lkrb -ldes
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 -s mrcheck ${DESTDIR}/usr/athena/mrcheck
This page took 0.04626 seconds and 5 git commands to generate.