23 lines
492 B
Batchfile
23 lines
492 B
Batchfile
|
|
@echo off
|
|
|
|
if not exist tmp md tmp
|
|
set path=d:\yad\svn\pentevo\tools\asl\bin\;d:\yad\svn\pentevo\tools\mhmt\
|
|
call ..\..\setpath_includes
|
|
set includes=%includes%;..\..\
|
|
|
|
asl -U -L -C -x -olist tmp\fviewer.lst -i %includes% fvmain.a80 || goto error
|
|
p2bin fvmain.p ..\fnviewer.flx -r $-$ -k
|
|
|
|
echo ########################
|
|
echo # -= End Compile Ok =- #
|
|
echo ########################
|
|
goto exit
|
|
|
|
:error
|
|
echo #######################
|
|
echo # -= Error Compile =- #
|
|
echo #######################
|
|
|
|
:exit
|