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

LIBNAME = simple

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

default: simple

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

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