]> andersk Git - moira.git/blame - clients/mrcheck/Makefile
changed the name of the program from sms to moira
[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
12SMSLIB = ${LDFLAGS} -lsms -lgdb -lcom_err
13LIBS = ${SMSLIB} -lcurses -ltermcap -lkrb -ldes
14
15
16SRCS = smscheck.c
17OBJS = smscheck.o
18
19all: smscheck
20
21smscheck: ${OBJS}
22 rm -f smscheck
23 cc ${CFLAGS} -o smscheck ${OBJS} ${LIBS}
24
25smscheck.o: smscheck.c
26
27lint:
28 lint -I../../include *.c
29
30clean:
31 rm -f *.o *~
32 rm -f smscheck
33
34install: ${PROGS}
35 install -s smscheck ${DESTDIR}/usr/athena/smscheck
This page took 0.713024 seconds and 5 git commands to generate.