23 lines
514 B
Batchfile
23 lines
514 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\;d:\yad\sprinter_src\tools\
|
|
call ..\..\setpath_includes
|
|
set includes=%includes%;..\..\
|
|
|
|
asl -U -L -C -x -olist tmp\header.lst -i %includes% header.a80 || goto error
|
|
p2bin header.p ..\help.flx -r $-$ -k
|
|
|
|
echo ########################
|
|
echo # -= End Compile Ok =- #
|
|
echo ########################
|
|
goto exit
|
|
|
|
:error
|
|
echo #######################
|
|
echo # -= Error Compile =- #
|
|
echo #######################
|
|
|
|
:exit
|