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.
19 lines
383 B
19 lines
383 B
@echo off
|
|
|
|
if "%1"=="" goto usage
|
|
if exist %1.dll set ext=dll
|
|
if exist %1.exe set ext=exe
|
|
|
|
:bb1work
|
|
bbflow /odb %1.bbf %1.%ext%
|
|
bbinstr /odb %1.ins.bbl /idf %1.bbi %1.bbf
|
|
bblink /o %1.ins.%ext% %1.ins.bbl
|
|
goto end
|
|
|
|
:usage
|
|
echo.
|
|
echo Please give the prefix of the 'dll' or 'exe' file which you are working with.
|
|
echo.
|
|
|
|
:end
|
|
|