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

LIBNAME = userfunc

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

default: userfunc

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

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