MAKEFILE 549 B

123456789101112131415161718192021
  1. #
  2. # Master makefile for Miner source
  3. #
  4. # Makes all the executable by visiting subdirs and making there
  5. #
  6. # The only thing to make is the subdirs
  7. SUBSYSTEMS = misc includes fix cfile 2d bios iff div mem vecmat 3d texmap
  8. #sosdigi sosmidi
  9. # What to make in the subdirs if nothing specified
  10. SUBTARGETS = clean optimize no_mono no_debug linstall
  11. #SUBTARGETS = update linstall
  12. # When making clean here, delete libs
  13. CLEAN_TARGS =
  14. #lib\*.lib lib\*.h lib\*.inc
  15. #all Miner makefiles should include this
  16. %include $(INIT)\makefile.def
  17.