Intial revision

This commit is contained in:
eck
1989-12-18 13:31:20 +00:00
parent 2b8e44b860
commit c98a786cc4
15 changed files with 1260 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
EMHOME = ../../../../..
DIR = .
MALLOC_C = $(DIR)/malloc.c
MALLOC_O = $(DIR)/malloc.o
MALLOCSRC = READ_ME size_type.h param.h impl.h check.h log.h phys.h \
mal.c log.c phys.c check.c
$(MALLOC_C): $(MALLOCSRC) Makefile add_file
rm -f $(MALLOC_C)
for i in $(MALLOCSRC) ; do add_file $$i >> $(MALLOC_C) ; done
rm -f $(MALLOC_O)
pr:
@pr Makefile add_file $(MALLOCSRC)
opr:
make pr | opr
clean:
rm -f *.o malloc.c