#########################################################################
#
# @(#)Makefile	1.29 3/6/97 05:54:42 /users/sccs/src/win/xdos/s.Makefile
#
#  Copyright (c) 1995-1996, Willows Software Inc.  All rights reserved.
#
#  Makefile for building memory allocation module
#
#########################################################################


OBJECTS = VMAlloc.o  VMFree.o Heap.o
ALLSRC  = VMAlloc.c VMFree.c Heap.c

default = archive
project = Memory

include $(TWINDIR)/Makefile.config

Memory.a: $(OBJECTS)
	${AR} Memory.a $(OBJECTS)

TWIN_AUXINC     = -I$(TWINDIR)/win -I$(TWINDIR)
