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:
@@ -1,80 +0,0 @@
|
||||
EMHOME = ../../..
|
||||
MODULES = $(EMHOME)/modules
|
||||
INSTALL = $(MODULES)/install
|
||||
COMPARE = $(MODULES)/compare
|
||||
INCLUDES = -I$(EMHOME)/h
|
||||
CFLAGS = -O $(INCLUDES) $(COPT)
|
||||
AR = ar
|
||||
SUF = o
|
||||
LIBSUF = a
|
||||
RCC = cc # must produce a runnable object
|
||||
|
||||
CFILES = rd_arhdr.c wr_arhdr.c \
|
||||
rd_ranlib.c wr_ranlib.c \
|
||||
rd_bytes.c wr_bytes.c \
|
||||
rd.c wr.c \
|
||||
wr_putc.c \
|
||||
rd_int2.c wr_int2.c \
|
||||
rd_unsig2.c \
|
||||
rd_long.c wr_long.c
|
||||
# do not change the order in OFILES
|
||||
OFILES = rd.$(SUF) rd_arhdr.$(SUF) rd_int2.$(SUF) rd_long.$(SUF) rd_ranlib.$(SUF) rd_unsig2.$(SUF) \
|
||||
rd_bytes.$(SUF) wr_arhdr.$(SUF) wr_int2.$(SUF) wr_long.$(SUF) wr_putc.$(SUF) wr.$(SUF) \
|
||||
wr_ranlib.$(SUF) wr_bytes.$(SUF)
|
||||
|
||||
.SUFFIXES: .$(SUF)
|
||||
.c.$(SUF):
|
||||
$(CC) -c $(CFLAGS) $*.c
|
||||
|
||||
all: libobject.$(LIBSUF)
|
||||
|
||||
install: all
|
||||
$(INSTALL) lib/libobject.$(LIBSUF)
|
||||
$(INSTALL) man/object.3
|
||||
|
||||
compare: all
|
||||
-$(COMPARE) lib/libobject.$(LIBSUF)
|
||||
-$(COMPARE) man/object.3
|
||||
|
||||
pr:
|
||||
@pr Makefile byte_order.c object.h $(CFILES)
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
clean:
|
||||
rm -f *.$(SUF) *.$(LIBSUF) nohup.out Out byte_order byte_order.h
|
||||
|
||||
libobject.$(LIBSUF): $(OFILES)
|
||||
$(AR) r libobject.$(LIBSUF) $(OFILES)
|
||||
-sh -c 'ranlib libobject.$(LIBSUF)'
|
||||
|
||||
depend: byte_order.h
|
||||
sed '/^#AUTOAUTO/,$$d' Makefile > Makefile.new
|
||||
echo '#AUTOAUTOAUTOAUTOAUTOAUTOAUTO' >> Makefile.new
|
||||
mkdep $(CFILES) | sed 's/\.c:/\.$(SUF):/' >> Makefile.new
|
||||
mv Makefile Makefile.$(SUF)ld
|
||||
mv Makefile.new Makefile
|
||||
|
||||
byte_order: byte_order.c
|
||||
$(RCC) -o byte_order byte_order.c
|
||||
|
||||
byte_order.h: byte_order
|
||||
byte_order > byte_order.h
|
||||
|
||||
lintlib: byte_order.h
|
||||
lint $(INCLUDES) -Cobject $(CFILES)
|
||||
mv llib-lobject.ln $(MODULES)/lib
|
||||
|
||||
#AUTOAUTOAUTOAUTOAUTOAUTOAUTO
|
||||
rd_arhdr.$(SUF): byte_order.h object.h
|
||||
wr_arhdr.$(SUF): byte_order.h object.h
|
||||
rd_ranlib.$(SUF): byte_order.h object.h
|
||||
wr_ranlib.$(SUF): byte_order.h object.h
|
||||
rd.$(SUF): byte_order.h object.h
|
||||
wr.$(SUF): byte_order.h object.h
|
||||
rd_int2.$(SUF): byte_order.h object.h
|
||||
wr_int2.$(SUF): byte_order.h object.h
|
||||
rd_unsig2.$(SUF): byte_order.h object.h
|
||||
rd_long.$(SUF): byte_order.h object.h
|
||||
wr_long.$(SUF): byte_order.h object.h
|
||||
@@ -1,54 +0,0 @@
|
||||
/* $Header$ */
|
||||
/*
|
||||
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
||||
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
||||
*/
|
||||
#include <stdio.h>
|
||||
|
||||
char bytes_reversed = 0;
|
||||
char words_reversed = 0;
|
||||
char char_unsigned = 0;
|
||||
|
||||
/*
|
||||
* Determine the byte/word order in shorts/longs, assuming the size of a short
|
||||
* is 2 chars, and the size of a long is 4 chars. Not all theoretical
|
||||
* possibilities are tested; only bytes reversed and/or words reversed.
|
||||
*/
|
||||
determine_ordering()
|
||||
{
|
||||
short s;
|
||||
long l;
|
||||
register char *cp;
|
||||
register short *sp;
|
||||
|
||||
cp = (char *)&s;
|
||||
cp[0] = 0x01; cp[1] = 0x02;
|
||||
if (s != 0x01 + (0x02 << 8))
|
||||
bytes_reversed = 1;
|
||||
sp = (short *)&l;
|
||||
sp[0] = 0x0001; sp[1] = 0x0002;
|
||||
if (l != 0x0001 + (0x0002L << 16))
|
||||
words_reversed = 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* determine whether characters are unsigned or signed
|
||||
*/
|
||||
|
||||
uns_char()
|
||||
{
|
||||
char c = 0200;
|
||||
int i = c;
|
||||
|
||||
if (i > 0) char_unsigned = 1;
|
||||
}
|
||||
|
||||
main()
|
||||
{
|
||||
determine_ordering();
|
||||
uns_char();
|
||||
printf("#define BYTES_REVERSED %d\n", bytes_reversed);
|
||||
printf("#define WORDS_REVERSED %d\n", words_reversed);
|
||||
printf("#define CHAR_UNSIGNED %d\n", char_unsigned);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user