home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / grafik / mgl11 / mkdefs10 / makedefs.def < prev    next >
Encoding:
Text File  |  1994-03-10  |  1.3 KB  |  43 lines

  1. #############################################################################
  2. #
  3. #                   Copyright (C) 1993 SciTech Software
  4. #                           All rights reserved.
  5. #
  6. # Descripton:   Generic makefile definitions include file. Includes the
  7. #               appropriate definition file for the specified compiler.
  8. #               By default Borland C++ 3.1 is assumed.
  9. #
  10. # $Id: makedefs.def 1.2 1994/03/09 11:22:00 kjb Exp $
  11. #
  12. #############################################################################
  13.  
  14. !if $d(msc)
  15. !include "\makedefs\msc.def"
  16. !elif $d(watcom)
  17. !include "\makedefs\watcom.def"
  18. !elif $d(symantec)
  19. !include "\makedefs\symantec.def"
  20. !else
  21. !include "\makedefs\borland.def"
  22. !endif
  23.  
  24. # Define where the 'pmode.c' file is located. You will need to change this
  25. # to reflect where you have installed the pmode library (only necessary if
  26. # you are re-building the libraries for SciTech Software products that
  27. # require this library.
  28.  
  29. PMODE_DIR       =   c:\bc\src\pmode
  30.  
  31. # Implicit rules to make the object files for the library...
  32.  
  33. .c.obj:
  34.     $(CC) $(CC_FLAGS) $(CC_SPECIAL) $(COMPILE_ONLY) {$< }
  35.  
  36. .cpp.obj:
  37.     $(CC) $(CC_FLAGS) $(CC_SPECIAL) $(COMPILE_ONLY) {$< }
  38.      
  39. .asm.obj:
  40.     $(ASM) $(ASM_FLAGS) $(ASM_SPECIAL) $<, $&
  41.  
  42.  
  43.