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,63 +0,0 @@
|
||||
EMHOME=../../..
|
||||
HDIR = $(EMHOME)/modules/h
|
||||
INSTALL=$(EMHOME)/modules/install
|
||||
COMPARE=$(EMHOME)/modules/compare
|
||||
INCLUDES = -I. -I$(HDIR)
|
||||
AR = ar
|
||||
SUF = o
|
||||
LIBSUF = a
|
||||
|
||||
CFLAGS = -O $(INCLUDES) $(COPT)
|
||||
|
||||
CSRC = Malloc.c\
|
||||
Salloc.c\
|
||||
Srealloc.c\
|
||||
Realloc.c\
|
||||
botch.c\
|
||||
clear.c\
|
||||
st_alloc.c\
|
||||
std_alloc.c \
|
||||
No_Mem.c
|
||||
SOURCES = alloc.h\
|
||||
$(CSRC)
|
||||
|
||||
OBJECTS = botch.$(SUF) clear.$(SUF) st_alloc.$(SUF) Malloc.$(SUF) \
|
||||
Salloc.$(SUF) \
|
||||
Srealloc.$(SUF) Realloc.$(SUF) std_alloc.$(SUF) No_Mem.$(SUF)
|
||||
|
||||
.SUFFIXES: .$(SUF)
|
||||
.c.$(SUF):
|
||||
$(CC) -c $(CFLAGS) $*.c
|
||||
|
||||
all: liballoc.$(LIBSUF)
|
||||
|
||||
liballoc.$(LIBSUF): $(OBJECTS)
|
||||
$(AR) cr liballoc.$(LIBSUF) $(OBJECTS)
|
||||
-sh -c 'ranlib liballoc.$(LIBSUF)'
|
||||
|
||||
install: all
|
||||
$(INSTALL) lib/liballoc.$(LIBSUF)
|
||||
$(INSTALL) man/alloc.3
|
||||
$(INSTALL) h/alloc.h
|
||||
|
||||
cmp: all
|
||||
-$(COMPARE) lib/liballoc.$(LIBSUF)
|
||||
-$(COMPARE) man/alloc.3
|
||||
-$(COMPARE) h/alloc.h
|
||||
|
||||
pr:
|
||||
@pr Makefile $(SOURCES)
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
clean:
|
||||
rm -f *.$(SUF) *.$(LIBSUF)
|
||||
|
||||
lintlib:
|
||||
lint $(INCLUDES) -Calloc $(CSRC)
|
||||
mv llib-lalloc.ln $(EMHOME)/modules/lib
|
||||
|
||||
st_alloc.$(SUF): alloc.h
|
||||
std_alloc.$(SUF): alloc.h
|
||||
Malloc.$(SUF): alloc.h
|
||||
@@ -1,12 +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".
|
||||
*/
|
||||
#ifdef DEBUG
|
||||
#define PRIVATE
|
||||
#else
|
||||
#define PRIVATE static
|
||||
#endif
|
||||
|
||||
#define EXPORT
|
||||
Reference in New Issue
Block a user