head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	98.10.25.03.02.50;	author abial;	state dead;
branches;
next	1.1;

1.1
date	98.10.21.17.36.15;	author abial;	state Exp;
branches;
next	;


desc
@@


1.2
log
@With much regret, I had to remove these two programs - their license
doesn't permit us to distribute them. I think I should take some law
classes...

Explained by:	bde
@
text
@# Makefile for mined

CFLAGS	= -D_POSIX_SOURCE -DASSUME_CONS25

OBJ = mined1.o mined2.o

all:	mined

mined:	$(OBJ)
	$(CC) -static -o $@@ $(OBJ)

install:	/usr/bin/mined


$(OBJ):	mined.h

clean:
	rm -f mined *.o *.s core *.bak
@


1.1
log
@Added two new utilities, both ported from Minix: mined (editor), and
msh (largely compatible Bourne shell).
@
text
@@

