home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- if not exist makefile goto no_makefile
-
- if %1.==SMALL. goto make_specific
- if %1.==COMPACT. goto make_specific
- if %1.==MEDIUM. goto make_specific
- if %1.==LARGE. goto make_specific
- if %1.==HUGE. goto make_specific
-
- goto make_default
-
- :make_specific
-
- echo about to execute command ...
- echo make -a -DMAKE_INIT=c:\ae\make.ini -DCC_%1_MODEL %2 %3 %4 %5 %6 %7 %8 %9
- make -a -DMAKE_INIT=c:\ae\make.ini -DCC_%1_MODEL %2 %3 %4 %5 %6 %7 %8 %9
- goto make_done
-
- :make_default
-
- echo about to execute command ...
- echo make -a -DMAKE_INIT=c:\ae\make.ini %1 %2 %3 %4 %5 %6 %7 %8 %9
- make -a -DMAKE_INIT=c:\ae\make.ini %1 %2 %3 %4 %5 %6 %7 %8 %9
-
- :make_done
- goto end_batch
-
- :no_makefile
- echo no makefile!
-
- :end_batch
-