head     1.1;
branch   ;
access   ;
symbols  ;
locks    ; strict;
comment  @# @;


1.1
date     92.03.13.12.19.13;  author bin;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@#
#	Makefile for the mail system.
#
#	CFLAGS = -O -DHPCOHERENT	: if on Inetco HP Coherent
#	CFLAGS = -O			: if on MWC Coherent
#
#DESTDIR=/interim/bin/
LIBS=-lmisc
CFLAGS=-O
O = send.o lmail.o util.o copyright.o
S = send.c lmail.c util.c mail.h Makefile

lmail : $O
	${CC} -n -o $(DESTDIR)lmail $O ${LIBS}
#	fixstack 1000 $(DESTDIR)lmail
	su root chmog 511 bin bin $(DESTDIR)lmail

copyright.o : copyright.c
@
