home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / prnt2.zip / IBM.MAK < prev    next >
Text File  |  1995-04-25  |  829b  |  43 lines

  1.  
  2. # MAKE file for PrnSetup.MAK     Release 5
  3.  
  4. # Revised:  1995-03-01
  5.  
  6. # Copyright ╕ 1987-1995  Prominare Inc.
  7.  
  8. # MAKE file created by Prominare Builder  Release 5
  9.  
  10. # Macro definitions
  11.  
  12. C_SW=-G4 -O+ -Rn -W3 -C 
  13. RC_SW=-r 
  14.  
  15.  
  16. Print.Exe: AppDefs.Obj FilePrn.Obj Print.Obj\
  17.         Print.Res PrnAPI.Obj PrnWnd.Obj\
  18.         Support.Obj
  19.  Link386 /ALIGN:4 /BASE:0x00010000 /EXEPACK @IBM.Lnk;
  20.  rc Print.Res Print.Exe
  21.  
  22. AppDefs.Obj: AppDefs.C
  23.  ICC $(C_SW) -Fo$*.Obj AppDefs.C
  24.  
  25. FilePrn.Obj: FilePrn.C
  26.  ICC $(C_SW) -Fo$*.Obj FilePrn.C
  27.  
  28. Print.Obj: Print.C
  29.  ICC $(C_SW) -Fo$*.Obj Print.C
  30.  
  31. Print.Res: Print.Rc
  32.  Rc $(RC_SW) Print.Rc $*.Res
  33.  
  34. PrnAPI.Obj: PrnAPI.C
  35.  ICC $(C_SW) -Fo$*.Obj PrnAPI.C
  36.  
  37. PrnWnd.Obj: PrnWnd.C
  38.  ICC $(C_SW) -Fo$*.Obj PrnWnd.C
  39.  
  40. Support.Obj: Support.C
  41.  ICC $(C_SW) -Fo$*.Obj Support.C
  42.  
  43.