home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #6 / amigaacscoverdisc1998-061998.iso / games / descent / source / make.ini < prev    next >
Text File  |  1998-06-08  |  709b  |  33 lines

  1. #
  2. # Default initialization file for MAKEFILES
  3. #
  4. # Feel free to replace this with your own personal favorite options
  5. #
  6.  
  7. # Turn the memory miser on. This is actually really important
  8. .MISER: 
  9.  
  10. .MISER_MODE:disk
  11.  
  12.  
  13. # Use the silly graphics when debugging
  14. .DEBUG_GRAPHICS:
  15.  
  16. # Default object directory
  17. OBJDIR = .\obj
  18.  
  19. # Turn debugging info on by default
  20. DEBUG_ON = 1
  21.  
  22. # Make sure the correct versions of make & mkmf are being run
  23. !if '$(MAKEVERSION)'<'601' || '$(MKMFVERSION)'<'321'
  24. !error This makefile requires OPUS MAKE v6.01 and MKMF 3.21 or greater.
  25. !endif
  26.  
  27. # Check for makefile.  If not present, give an error
  28. %if ! %exists($(MAKEFILE))
  29. %error Error: missing makefile
  30. %endif
  31.  
  32.  
  33.