Initial revision

This commit is contained in:
ceriel
1987-01-05 13:26:29 +00:00
parent 8addf6e9a5
commit 26326c178e
3 changed files with 202 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
EMHOME=../../..
HDIR = $(EMHOME)/modules/h
INSTALL=$(EMHOME)/modules/install
COMPARE=$(EMHOME)/modules/compare
CFLAGS = -O -I$(HDIR)
SOURCES = Xmalloc.c
OBJECTS = Xmalloc.o
all: $(OBJECTS)
install: all
$(INSTALL) lib/Xmalloc.o
compare: all
$(COMPARE) lib/Xmalloc.o
clean:
rm -f *.[oa]