#***************************************************************************
#*
#*	INVESTMENT INTELLIGENCE SYSTEMS CORPORATION
#*
#*	makefile
#*	@(#)makefile	3.3.1.3 98/09/08
#*
#*	To build the boundin use the following command:
#*
#*	make
#*
#*	To remove generated files use:
#*
#*	make clean
#*
#***************************************************************************

LIBNAME = array

include $(WINGZ3)/incl/make.$(WZPLATFORM).head

default: array

array:
	$(CC) $(BICFLAGS) -c array.c
	$(LD) $(BILFLAGS) -o $(WZPLATFORM)/array array.o

clean:
	@rm -f array.o $(WZPLATFORM)/array
