home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / HARDDISK / BADCLU.ZIP / TMAKE.BAT < prev   
Encoding:
DOS Batch File  |  1990-04-25  |  769 b   |  33 lines

  1. @echo off
  2.  
  3. if not exist makefile goto no_makefile
  4.  
  5. if  %1.==SMALL.     goto make_specific
  6. if  %1.==COMPACT.   goto make_specific
  7. if  %1.==MEDIUM.    goto make_specific
  8. if  %1.==LARGE.     goto make_specific
  9. if  %1.==HUGE.     goto make_specific
  10.  
  11. goto make_default
  12.  
  13. :make_specific
  14.  
  15. echo about to execute command ...
  16. echo    make -a -DMAKE_INIT=c:\ae\make.ini -DCC_%1_MODEL %2 %3 %4 %5 %6 %7 %8 %9
  17. make -a -DMAKE_INIT=c:\ae\make.ini -DCC_%1_MODEL %2 %3 %4 %5 %6 %7 %8 %9
  18. goto make_done
  19.  
  20. :make_default
  21.  
  22. echo about to execute command ...
  23. echo    make -a -DMAKE_INIT=c:\ae\make.ini %1 %2 %3 %4 %5 %6 %7 %8 %9
  24. make -a -DMAKE_INIT=c:\ae\make.ini %1 %2 %3 %4 %5 %6 %7 %8 %9
  25.  
  26. :make_done
  27. goto end_batch
  28.  
  29. :no_makefile
  30. echo no makefile!
  31.  
  32. :end_batch
  33.