home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / prnt1.zip / Borland.MAK < prev    next >
Text File  |  1995-03-01  |  845b  |  39 lines

  1.  
  2. # MAKE file for Borland.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=-Ox -v- -w -c 
  13. RC_SW=-r 
  14.  
  15.  
  16. PrnSetup.Exe: $(OBJDIR)AppDefs.Obj $(OBJDIR)PrnAPI.Obj $(OBJDIR)PrnSetup.Obj\
  17.         $(OBJDIR)PrnSetup.Res $(OBJDIR)PrnWnd.Obj $(OBJDIR)Support.Obj
  18.  TLink @Borland.Lnk
  19.  rc PrnSetup.Res PrnSetup.Exe
  20.  
  21. $(OBJDIR)AppDefs.Obj: AppDefs.C
  22.  BCC $(C_SW) -o$*.Obj AppDefs.C
  23.  
  24. $(OBJDIR)PrnAPI.Obj: PrnAPI.C
  25.  BCC $(C_SW) -o$*.Obj PrnAPI.C
  26.  
  27. $(OBJDIR)PrnSetup.Obj: PrnSetup.C
  28.  BCC $(C_SW) -o$*.Obj PrnSetup.C
  29.  
  30. $(OBJDIR)PrnSetup.Res: PrnSetup.Rc
  31.  BRCC $(RC_SW) PrnSetup.Rc $*.Res
  32.  
  33. $(OBJDIR)PrnWnd.Obj: PrnWnd.C
  34.  BCC $(C_SW) -o$*.Obj PrnWnd.C
  35.  
  36. $(OBJDIR)Support.Obj: Support.C
  37.  BCC $(C_SW) -o$*.Obj Support.C
  38.  
  39.