#--------------------
# VECTFONT make file
#--------------------

CL=cl -c -G2sw -W3 $*.c

vectfont.obj : vectfont.c vectfont.h
     $(CL)

vf00.obj : vf00.c vectfont.h
     $(CL)

vf01.obj : vf01.c vectfont.h
     $(CL)

vf02.obj : vf02.c vectfont.h
     $(CL)

vf03.obj : vf03.c vectfont.h
     $(CL)

vf04.obj : vf04.c vectfont.h
     $(CL)

vf05.obj : vf05.c vectfont.h
     $(CL)

vf06.obj : vf06.c vectfont.h
     $(CL)

vf07.obj : vf07.c vectfont.h
     $(CL)

vf08.obj : vf08.c vectfont.h
     $(CL)

vf09.obj : vf09.c vectfont.h
     $(CL)

vf10.obj : vf10.c vectfont.h
     $(CL)

vf11.obj : vf11.c vectfont.h
     $(CL)

vf12.obj : vf12.c vectfont.h
     $(CL)

vf13.obj : vf13.c vectfont.h
     $(CL)

vf14.obj : vf14.c vectfont.h
     $(CL)

vf15.obj : vf15.c vectfont.h
     $(CL)

vectfont.res : vectfont.rc vectfont.h
     rc -r vectfont

vectfont.exe : vectfont.obj vf00.obj vf01.obj vf02.obj vf03.obj \
                            vf04.obj vf05.obj vf06.obj vf07.obj \
                            vf08.obj vf09.obj vf10.obj vf11.obj \
                            vf12.obj vf13.obj vf14.obj vf15.obj \
                            vectfont.def
     link @vectfont.lnk
     rc vectfont.res

vectfont.exe : vectfont.res
     rc vectfont.res
           
