home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VECTFONT.ZIP / VECTFONT next >
Text File  |  1988-11-29  |  1KB  |  72 lines

  1. #--------------------
  2. # VECTFONT make file
  3. #--------------------
  4.  
  5. CL=cl -c -G2sw -W3 $*.c
  6.  
  7. vectfont.obj : vectfont.c vectfont.h
  8.      $(CL)
  9.  
  10. vf00.obj : vf00.c vectfont.h
  11.      $(CL)
  12.  
  13. vf01.obj : vf01.c vectfont.h
  14.      $(CL)
  15.  
  16. vf02.obj : vf02.c vectfont.h
  17.      $(CL)
  18.  
  19. vf03.obj : vf03.c vectfont.h
  20.      $(CL)
  21.  
  22. vf04.obj : vf04.c vectfont.h
  23.      $(CL)
  24.  
  25. vf05.obj : vf05.c vectfont.h
  26.      $(CL)
  27.  
  28. vf06.obj : vf06.c vectfont.h
  29.      $(CL)
  30.  
  31. vf07.obj : vf07.c vectfont.h
  32.      $(CL)
  33.  
  34. vf08.obj : vf08.c vectfont.h
  35.      $(CL)
  36.  
  37. vf09.obj : vf09.c vectfont.h
  38.      $(CL)
  39.  
  40. vf10.obj : vf10.c vectfont.h
  41.      $(CL)
  42.  
  43. vf11.obj : vf11.c vectfont.h
  44.      $(CL)
  45.  
  46. vf12.obj : vf12.c vectfont.h
  47.      $(CL)
  48.  
  49. vf13.obj : vf13.c vectfont.h
  50.      $(CL)
  51.  
  52. vf14.obj : vf14.c vectfont.h
  53.      $(CL)
  54.  
  55. vf15.obj : vf15.c vectfont.h
  56.      $(CL)
  57.  
  58. vectfont.res : vectfont.rc vectfont.h
  59.      rc -r vectfont
  60.  
  61. vectfont.exe : vectfont.obj vf00.obj vf01.obj vf02.obj vf03.obj \
  62.                             vf04.obj vf05.obj vf06.obj vf07.obj \
  63.                             vf08.obj vf09.obj vf10.obj vf11.obj \
  64.                             vf12.obj vf13.obj vf14.obj vf15.obj \
  65.                             vectfont.def
  66.      link @vectfont.lnk
  67.      rc vectfont.res
  68.  
  69. vectfont.exe : vectfont.res
  70.      rc vectfont.res
  71. 
  72.