home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / PMFONT.ZIP / makefile < prev   
Makefile  |  1991-06-27  |  610b  |  32 lines

  1. #
  2. #  Creation date: 27 November 1991
  3. #
  4.  
  5. .SUFFIXES:    .obj .c .exe .rc .res
  6.  
  7. .c.obj:
  8.    @echo Compiling $<
  9.    @cl -Alfu -G2s -W3 -Zp -c -nologo $< >>Log
  10.  
  11. .rc.res:
  12.    @echo Compiling resource $<
  13.    @rc -r $< $*.Res >>Log
  14.  
  15. all::
  16.    @echo ..... >Log
  17.  
  18. Fonts.exe::    Fonts.obj  Fnts.obj  Fonts.res  Fonts.def
  19.     @echo Linking $@
  20.     @link /MAP /NOD /BATCH /A:16 >>Log @<<
  21.              Fonts + Fnts,
  22.              Fonts.Exe,
  23.              Fonts.Map,
  24.              OS2 + LLibCE,
  25.              Fonts.Def;
  26. <<
  27.     @rc Fonts.Res Fonts.Exe >>Log
  28.     @find "warning" Log
  29.  
  30.  
  31. all::     Fonts.exe
  32.