home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Bin / builtins.mak < prev    next >
Encoding:
Text File  |  2000-01-31  |  572 b   |  37 lines

  1. #
  2. # Inprise C++Builder - (C) Copyright 1999 by Borland International
  3. #
  4.  
  5. CC       = bcc32
  6. RC       = brcc32
  7. AS       = tasm32
  8.  
  9. !if $d(__NMAKE__)
  10. CXX      = bcc32 -P
  11. CPP      = bcc32 -P
  12. !endif
  13.  
  14. .asm.obj:
  15.       $(AS) $(AFLAGS) $&.asm
  16.  
  17. .c.exe:
  18.       $(CC) $(CFLAGS) $&.c
  19.  
  20. .c.obj:
  21.       $(CC) $(CFLAGS) /c $&.c
  22.  
  23. .cpp.exe:
  24.       $(CC) $(CFLAGS) $&.cpp
  25.  
  26. .cpp.obj:
  27.       $(CC) $(CPPFLAGS) /c $&.cpp
  28.  
  29. .rc.res:
  30.       $(RC) $(RFLAGS) /r $&
  31.  
  32. .SUFFIXES: .exe .obj .asm .c .res .rc
  33.  
  34. !if !$d(BCEXAMPLEDIR)
  35. BCEXAMPLEDIR = $(MAKEDIR)\..\EXAMPLES
  36. !endif
  37.