mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.9 KiB
74 lines
1.9 KiB
@echo off
|
|
|
|
rem coreapps.bat 2/15/2013 dwg - build all core apps using batch files
|
|
|
|
echo.
|
|
echo Building access.com...
|
|
if not exist access.cpm call access.bat
|
|
if not exist access.cpm echo WARNING ACCESS DIDN'T BUILD
|
|
if not exist access.cpm pause
|
|
|
|
echo.
|
|
echo Building cpmname.com...
|
|
if not exist cpmname.cpm call cpmname.bat
|
|
if not exist cpmname.cpm echo WARNING CPMNAME DIDN'T BUILD
|
|
if not exist cpmname.cpm pause
|
|
|
|
echo.
|
|
echo Building findfile.com...
|
|
if not exist findfile.cpm call findfile.bat
|
|
if not exist findfile.cpm echo WARNING FINDFILE DIDN'T BUILD
|
|
if not exist findfile.cpm pause
|
|
|
|
echo.
|
|
echo Building map.com...
|
|
if not exist map.cpm call map.bat
|
|
if not exist map.cpm echo WARNING MAP DIDN'T BUILD
|
|
if not exist map.cpm pause
|
|
|
|
echo.
|
|
echo Building meta.com...
|
|
if not exist meta.cpm call meta.bat
|
|
if not exist meta.cpm echo WARNING META DIDN'T BUILD
|
|
if not exist meta.cpm pause
|
|
|
|
echo.
|
|
echo Building multifmt.com...
|
|
if not exist multifmt.cpm call multifmt.bat
|
|
if not exist multifmt.cpm echo WARNING MULTIFMT DIDN'T BUILD
|
|
if not exist multifmt.cpm pause
|
|
|
|
echo.
|
|
echo Building rem.com...
|
|
if not exist rem.cpm call makerem.bat
|
|
if not exist rem.cpm echo WARNING REM DIDN'T BUILD
|
|
if not exist rem.cpm pause
|
|
|
|
echo.
|
|
echo Building setlabel.com...
|
|
if not exist setlabel.cpm call setlabel.bat
|
|
if not exist setlabel.cpm echo WARNING SETLABEL DIDN'T BUILD
|
|
if not exist setlabel.cpm pause
|
|
|
|
echo.
|
|
echo Building sysgen.com...
|
|
if not exist sysgen.cpm call sysgen.bat
|
|
if not exist sysgen.cpm echo WARNING SYSGEN DIDN'T BUILD
|
|
if not exist sysgen.cpm pause
|
|
|
|
echo.
|
|
echo Building termtype.com...
|
|
if not exist termtype.cpm call termtype.bat
|
|
if not exist termtype.cpm echo WARNING TERMTYPE DIDN'T BUILD
|
|
if not exist termtype.cpm pause
|
|
|
|
echo.
|
|
echo Building view.com...
|
|
if not exist view.cpm call view.bat
|
|
if not exist view.cpm echo WARNING VIEW DIDN'T BUILD
|
|
if not exist view.cpm pause
|
|
|
|
echo.
|
|
echo Build Core Apps complete:
|
|
echo.
|
|
dir *.CPM
|