# **********************************************************************
# * DISCLAIMER OF WARRANTIES:                                          *
# *                                                                    *
# * The following enclosed code is sample code created by IBM          *
# * Corporation.  This sample code is not part of any standard IBM     *
# * product and is provided to you solely for the purpose of assisting *
# * you in the development of your applications.  The code is provided *
# * "AS IS", without warranty of any kind.  IBM shall not be liable    *
# * for any damages arising out of your use of the sample code, even   *
# * if they have been advised of the possibility of such damages       *
# *                                                                    *
# **********************************************************************
#
# sample07 makefile

CFLAGS=/Ti /Ge- /Gd
LDFLAGS=/de /dll /noe
LD=ilink
CC=icc

all: vf.dll vf.lib

.cpp.obj:
        $(CC) $(CFLAGS) /Fo"%|dpfF.obj" /C %s

vf.dll: vf.obj basic.def
        $(LD) $(LDFLAGS) -out:$@ $**

vf.lib: vf.obj
        ilib -gi:$@ $**

vf.obj: vf.cpp vf.h

clean:
        -del *.obj *.dbg *.dll *.lib 2>nul:

