home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo Creating c:/a/proj/eco
- set drv=C:
- if not "%1" == "" set drv=%1
- echo Compiling on drive %drv%
- echo.
- echo If this is incorrect, BREAK here and call INSTALL X: where X is your drive.
- echo.
- pause
-
- %drv% >nul
- cd \ >nul
- mkdir \a >nul
- mkdir \a\proj >nul
- mkdir \a\proj\eco >nul
- cd \a\proj\eco >nul
- copy a:\install2.bat \a\proj\eco >nul
- copy a:\inpath.exe \a\proj\eco >nul
- install2
-