# BuildSystemHeader added automatically
/**/# $Header: [Imakefile,v 1.1 91/05/04 06:45:53 afuller Exp ]$

#ifdef VaxArchitecture
CPU=vax
#endif
#ifdef MipsArchitecture
CPU=max
#endif

LIBSRCS = Xalloc.c
LIBOBJS = Xalloc.o
INCLUDES = -I.  -I$(TOP)/server/include -I$(INCLUDESRC) -I$(TOP)/lib/Xau
DEFINES = -DMALLOC=Xalloc -DREALLOC=Xrealloc -DFREE=Xfree

all::	liballoc.a

NormalLibraryObjectRule()
NormalLibraryTarget(alloc,$(LIBOBJS))
LintLibraryTarget(alloc,$(SRCS))
NormalLintTarget($(LINTDEFS) $(SRCS))

DependTarget()

clean::
	$(RM) -f *.a *.o
