home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / LASER / PM120.ZIP / TMAKE.BAT < prev   
Encoding:
DOS Batch File  |  1990-04-09  |  770 b   |  32 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.  
  10. goto make_default
  11.  
  12. :make_specific
  13.  
  14. echo about to execute command ...
  15. echo    make -a -DMAKE_INIT=d:\ae\make.ini -DCC_%1_MODEL -DCC_PACK %2 %3 %4 %5 %6 %7 %8 %9
  16. make -a -DMAKE_INIT=d:\ae\make.ini -DCC_%1_MODEL -DCC_PACK %2 %3 %4 %5 %6 %7 %8 %9
  17. goto make_done
  18.  
  19. :make_default
  20.  
  21. echo about to execute command ...
  22. echo    make -a -DMAKE_INIT=d:\ae\make.ini -DCC_PACK %1 %2 %3 %4 %5 %6 %7 %8 %9
  23. make -a -DMAKE_INIT=d:\ae\make.ini -DCC_PACK %1 %2 %3 %4 %5 %6 %7 %8 %9
  24.  
  25. :make_done
  26. goto end_batch
  27.  
  28. :no_makefile
  29. echo no makefile!
  30.  
  31. :end_batch
  32.