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 cc4e74077c
commit e87791b38a
689 changed files with 0 additions and 68730 deletions

View File

@@ -1,38 +0,0 @@
EMHOME=../../..
BACK=$(EMHOME)/lib/ceg/ce_back
CEG = $(EMHOME)/lib/ceg/util
AR = ar
all: back.a
make -f $(CEG)/make_own
install: back.a
make -f $(CEG)/make_own install
cmp: back.a
-make -f $(CEG)/make_own cmp
pr:
@pr Makefile EM_table mach.h mach.c as_table as.h as.c \
Make.back do_close.c do_open.c end_back.c misc.c output.c relocation.c
opr:
make pr | opr
# total cleanup
clean:
make -f $(CEG)/make_own clean
rm -rf back back.a
# only remove ce, ceg, and back directories
dclean:
make -f $(CEG)/make_own dclean
rm -rf back
back.a: do_close.c do_open.c end_back.c misc.c output.c relocation.c
-mkdir back
cp $(BACK)/obj_back/*h back
cp Make.back back/Makefile
cd back; make ; cd ..
$(AR) r back.a back/*o;
-sh -c 'ranlib back.a'

View File

@@ -1,28 +0,0 @@
EMHOME = ../../..
LIBOBJ = $(EMHOME)/modules/lib/libobject.a
INCLUDE = $(EMHOME)/h
CFLAGS = -I. -I$(INCLUDE) -O -DMACH=2
TARGETS = cv
all: $(TARGETS)
install: all
../../install cv
cmp: all
../../compare cv
cv: cv.o
$(CC) $(LDFLAGS) -o cv cv.o $(LIBOBJ)
Xcv: Xcv.o
$(CC) $(LDFLAGS) -o Xcv Xcv.o $(LIBOBJ)
clean:
rm -f $(TARGETS) *.o nohup.out Out
pr:
@pr Makefile cv.c
opr:
make pr | opr

View File

@@ -1,42 +0,0 @@
# $Header$
EMHOME=../../..
EMOBJ = aar.o cii.o cmi.o cms.o cmu.o csa.o csb.o cuu.o dia.o exg.o fat.o \
inn.o lar.o los.o mon.o nop.o sar.o set.o shp.o sts.o trp.o trpstr.o
FOBJ = adf4.o adf8.o cff.o cfi.o cfu.o cif.o cmf4.o cmf8.o cuf.o dvf4.o \
dvf8.o fef4.o fef8.o fif4.o fif8.o mlf4.o mlf8.o sbf4.o sbf8.o vars.o
OBJ = $(EMOBJ) $(FOBJ)
all: libext.a head_em.sun.o
.s.o:
sun3 -c $*.s
libext.a: $(OBJ)
for i in $(OBJ) ; do ../../../lib/sun3/cv -u $$i $$i.X ; mv $$i.X $$i ; done
ar rv libext.a $(OBJ)
ranlib libext.a
head_em.sun.o: head_em.o
../../../lib/sun3/cv -u head_em.o head_em.sun.o
install: all
../../install libext.a tail_ext
../../install head_em.sun.o head_ext
cmp: all
-../../compare libext.a tail_ext
-../../compare head_em.sun.o head_ext
clean:
rm -f *.[oa]
pr:
opr:
$(EMOBJ): $(EMHOME)/lib/m68020/tail_em
aal x $(EMHOME)/lib/m68020/tail_em $(EMOBJ)

View File

@@ -1,29 +0,0 @@
# $Header$
MACH=m68020
all: libmon_o.a head_em.o
install: all
../../install head_em.o head_em
../../install libmon_o.a tail_mon
cmp: all
-../../compare head_em.o head_em
-../../compare libmon_o.a tail_mon
libmon_o.a: libmon_s.a
ASAR=aal ; export ASAR ;\
march . libmon_o.a
head_em.o: head_em.s
$(MACH) -I../../../h -c head_em.s
clean:
rm -f *.o libmon_o.a
opr :
make pr | opr
pr:
@pr `pwd`/head_em.s
@arch pv libmon_s.a | pr -h `pwd`/libmon_s.a

View File

@@ -1,58 +0,0 @@
#include <sys/types.h>
#include <sys/stat.h>
static Xcvt();
int
stat(path, buf)
char *path;
struct stat *buf;
{
char Xbuf[100];
int retval;
retval = _stat(path, Xbuf);
Xcvt(Xbuf, (char *)buf);
return retval;
}
int
lstat(path, buf)
char *path;
struct stat *buf;
{
char Xbuf[100];
int retval;
retval = _lstat(path, Xbuf);
Xcvt(Xbuf, (char *)buf);
return retval;
}
int
fstat(fd, buf)
int fd;
struct stat *buf;
{
char Xbuf[100];
int retval;
retval = __fstat(fd, Xbuf);
Xcvt(Xbuf, (char *)buf);
return retval;
}
static
Xcvt(buf, statbuf)
char *buf, *statbuf;
{
register char *s, *t;
register int i;
s = buf; t = statbuf;
*t++ = *s++; *t++ = *s++;
*t++ = 0; *t++ = 0;
for (i = 14; i; i--) *t++ = *s++;
*t++ = 0; *t++ = 0;
for (i = 44; i; i--) *t++ = *s++;
}

View File

@@ -1,32 +0,0 @@
#include <sys/types.h>
#include <sys/stat.h>
static Xcvt();
int
_fstat(fd, buf)
int fd;
struct stat *buf;
{
char Xbuf[100];
int retval;
retval = __fstat(fd, Xbuf);
Xcvt(Xbuf, (char *)buf);
return retval;
}
static
Xcvt(buf, statbuf)
char *buf, *statbuf;
{
register char *s, *t;
register int i;
s = buf; t = statbuf;
*t++ = *s++; *t++ = *s++;
*t++ = 0; *t++ = 0;
for (i = 14; i; i--) *t++ = *s++;
*t++ = 0; *t++ = 0;
for (i = 44; i; i--) *t++ = *s++;
}

View File

@@ -1,4 +0,0 @@
if sun3 -c -L $1 1>&2
then echo `basename $1 $2`.o
else exit 1
fi