#
# Makefile for Microsoft Visual C 2.0 for IX86.
#
ULIB	= ..\lib\ 
UINC	= ..\include\ 

# If the include files are already be on the include path, the /I option
# can be left off.
#
CFLAGS	= -c -W3 -D_X86_=1 -D_WIN32 /Ox /I $(UINC)
LFLAGS	= -dll -def:$(UINC)serv.def
LLIBS	= $(ULIB)serv_w.obj $(ULIB)server.lib libc.lib kernel32.lib


# Output *.p modules are made directly from C source files to keep this
# example simple.
#
.c.p:
	cl $(CFLAGS) $*.c
	link $(LFLAGS) -out:$@ $*.obj $(LLIBS)

all : spherize.p spikey.p testcmd.p layerset.p vsformat.p
