Delete 689 undead files.

These files "magically reappeared" after the conversion from CVS to
Mercurial.  The old CVS repository deleted these files but did not
record *when* it deleted these files.  The conversion resurrected these
files because they have no history of deletion.  These files were
probably deleted before year 1995.  The CVS repository begins to record
deletions around 1995.

These files may still appear in older revisions of this Mercurial
repository, when they should already be deleted.  There is no way to fix
this, because the CVS repository provides no dates of deletion.

See http://sourceforge.net/mailarchive/message.php?msg_id=29823032
This commit is contained in:
George Koehler
2012-09-20 22:26:32 -04:00
parent b6dfaefeff
commit 0131ca4d46
689 changed files with 0 additions and 68730 deletions

View File

@@ -1,75 +0,0 @@
# $Header$
EMHOME = ../../..
MODDIR=$(EMHOME)/modules
INSTALL = $(MODDIR)/install
COMPARE = $(MODDIR)/compare
INCLUDES = -I. -I$(MODDIR)/h
CFLAGS = -O $(INCLUDES) $(COPT)
AR = ar
SUF = o
LIBSUF = a
LIBFLT = libflt.$(LIBSUF)
SRC = flt_ar2flt.c flt_div.c flt_flt2ar.c flt_modf.c flt_str2fl.c \
flt_cmp.c flt_add.c b64_add.c flt_mul.c flt_nrm.c b64_sft.c \
flt_umin.c flt_chk.c split.c ucmp.c
OBJ = flt_ar2flt.$(SUF) flt_div.$(SUF) flt_flt2ar.$(SUF) flt_modf.$(SUF) \
flt_str2fl.$(SUF) flt_cmp.$(SUF) flt_add.$(SUF) b64_add.$(SUF) \
flt_mul.$(SUF) flt_nrm.$(SUF) b64_sft.$(SUF) flt_umin.$(SUF) \
flt_chk.$(SUF) split.$(SUF) ucmp.$(SUF)
.SUFFIXES: .$(SUF)
.c.$(SUF):
$(CC) -c $(CFLAGS) $*.c
all: $(LIBFLT)
test: $(LIBFLT) test.o
$(CC) -o tst test.o $(LIBFLT)
./tst
$(LIBFLT): $(OBJ)
rm -f $(LIBFLT)
$(AR) r $(LIBFLT) $(OBJ)
-sh -c 'ranlib $(LIBFLT)'
install: all
$(INSTALL) lib/$(LIBFLT)
$(INSTALL) h/flt_arith.h
$(INSTALL) man/flt_arith.3
cmp: all
-$(COMPARE) lib/$(LIBFLT)
-$(COMPARE) h/flt_arith.h
-$(COMPARE) man/flt_arith.3
pr:
@pr Makefile $(SRC)
opr:
make pr | opr
clean:
rm -f *.$(SUF) $(LIBFLT)
lintlib:
lint $(INCLUDES) -Cflt $(SRC)
mv llib-lflt.ln $(MODDIR)/lib
b64_add.$(SUF): flt_misc.h flt_arith.h
flt_ar2flt.$(SUF): flt_misc.h flt_arith.h
flt_div.$(SUF): flt_misc.h flt_arith.h
flt_nrm.$(SUF): flt_misc.h flt_arith.h
b64_sft.$(SUF): flt_misc.h flt_arith.h
flt_chk.$(SUF): flt_misc.h flt_arith.h
flt_flt2ar.$(SUF): flt_misc.h flt_arith.h
flt_str2fl.$(SUF): flt_misc.h flt_arith.h
flt_add.$(SUF): flt_misc.h flt_arith.h
flt_cmp.$(SUF): flt_misc.h flt_arith.h
flt_mul.$(SUF): flt_misc.h flt_arith.h
flt_modf.$(SUF): flt_misc.h flt_arith.h
flt_umin.$(SUF): flt_misc.h
ucmp.$(SUF): flt_misc.h flt_arith.h
split.$(SUF): flt_misc.h flt_arith.h

View File

@@ -1,22 +0,0 @@
/*
* (c) copyright 1989 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
#include <flt_arith.h>
/* some short-hands ... */
#define m1 flt_mantissa.flt_h_32
#define m2 flt_mantissa.flt_l_32
/* some constants */
#define EXT_MAX 16384 /* max exponent */
#define EXT_MIN (-16384) /* min exponent */
/* hiding of names: */
#define ucmp flt__ucmp
#define flt_nrm flt__nrm
#define flt_chk flt__chk
#define flt_b64_add flt__64add
#define flt_split flt__split