home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / prnt1.zip / IBM.MAK < prev    next >
Text File  |  1995-03-01  |  783b  |  39 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. PrnSetup.Exe: AppDefs.Obj PrnAPI.Obj PrnSetup.Obj\
  17.         PrnSetup.Res PrnWnd.Obj Support.Obj
  18.  Link386 /ALIGN:4 /BASE:0x00010000 /EXEPACK @IBM.Lnk;
  19.  rc PrnSetup.Res PrnSetup.Exe
  20.  
  21. AppDefs.Obj: AppDefs.C
  22.  ICC $(C_SW) -Fo$*.Obj AppDefs.C
  23.  
  24. PrnAPI.Obj: PrnAPI.C
  25.  ICC $(C_SW) -Fo$*.Obj PrnAPI.C
  26.  
  27. PrnSetup.Obj: PrnSetup.C
  28.  ICC $(C_SW) -Fo$*.Obj PrnSetup.C
  29.  
  30. PrnSetup.Res: PrnSetup.Rc
  31.  $(RC) $(RC_SW) PrnSetup.Rc $*.Res
  32.  
  33. PrnWnd.Obj: PrnWnd.C
  34.  ICC $(C_SW) -Fo$*.Obj PrnWnd.C
  35.  
  36. Support.Obj: Support.C
  37.  ICC $(C_SW) -Fo$*.Obj Support.C
  38.  
  39.