]> andersk Git - moira.git/blame - clients/mailmaint/Makefile
Used /bin/sh format instead of /bin/csh format, by accident.
[moira.git] / clients / mailmaint / Makefile
CommitLineData
3b3cb07f 1#
2# $Source$
3# $Header$
4#
7189310c 5# (c) Copyright 1988 by the Massachusetts Institute of Technology.
6# For copying and distribution information, please see the file
7# <mit-copyright.h>.
3b3cb07f 8
8defc06b 9# Makefile for Moira client mailmaint
3b3cb07f 10#
11#
12DESTDIR=
13CFLAGS = -I../../include -O
14CONFDIR = ${DESTDIR}/usr/athena
15BINDIR = ${DESTDIR}/bin
16
8defc06b 17MOIRALIB = -L../../lib -lmoira -lgdb -lcom_err
3b3cb07f 18
19SRCS = mailmaint.c
20
21OBJECTS = mailmaint.o
22
23all: mailmaint
24
25mailmaint: ${OBJECTS}
8defc06b 26 cc ${CFLAGS} -o mailmaint ${OBJECTS} ${MOIRALIB} \
92b7433e 27 -lcurses -ltermcap -lkrb -ldes -lhesiod
3b3cb07f 28
29mailmaint.o: mailmaint.c
30 cc -c ${CFLAGS} mailmaint.c
31
32lint:
33 lint -I../../include ${SRCS}
34
35clean:
36 rm -f *.o *~ core \#*
37 rm -f mailmaint
38
39install: ${PROGS}
92b7433e 40 install -c -s mailmaint ${DESTDIR}/usr/athena/mailmaint
050550ba 41
42depend:
43 mkdep ${CFLAGS} ${SRCS}
44
45# DO NOT DELETE THIS LINE -- mkdep uses it.
46
47mailmaint.o: mailmaint.c /usr/include/stdio.h /usr/include/pwd.h
48mailmaint.o: /usr/include/signal.h /usr/include/strings.h
49mailmaint.o: /usr/include/curses.h /usr/include/sgtty.h
50mailmaint.o: /usr/include/sys/ioctl.h /usr/include/sys/ttychars.h
51mailmaint.o: /usr/include/sys/ttydev.h /usr/include/sys/types.h
52mailmaint.o: /usr/include/varargs.h ../../include/com_err.h
8defc06b 53mailmaint.o: /usr/include/ctype.h ../../include/moira.h ../../include/mr_et.h
54mailmaint.o: ../../include/moira_site.h ../../include/mit-copyright.h
This page took 0.20193 seconds and 5 git commands to generate.