Skip to content
Snippets Groups Projects
Commit 6c064579 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't call makelibs.bat from build.bat

This seems to stop the CI build and I haven't found any other solution.
So just copy/paste the contents of makelibs.bat into this batch file. <sigh>
parent 695da6a2
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3554 failed
@echo off
setlocal
call makelibs.bat
if exist ..\bcc.win32.lib.release set dllsrc=..\bcc.win32.lib.release
if exist ..\bcc.win32.lib.debug set dllsrc=..\bcc.win32.lib.debug
if exist ..\msvc.win32.dll.release set dllsrc=..\msvc.win32.dll.release
if exist ..\msvc.win32.dll.debug set dllsrc=..\msvc.win32.dll.debug
echo Creating import libraries from %dllsrc%
coff2omf %dllsrc%\sbbs.lib sbbs.lib
coff2omf %dllsrc%\mailsrvr.lib mailsrvr.lib
coff2omf %dllsrc%\ftpsrvr.lib ftpsrvr.lib
coff2omf %dllsrc%\websrvr.lib websrvr.lib
coff2omf %dllsrc%\services.lib services.lib
bpr2mak sbbsctrl.bpr
echo.
make %1 %2 %3 %4 %5 %6 -f sbbsctrl.mak
\ No newline at end of file
make %1 %2 %3 %4 %5 %6 -f sbbsctrl.mak
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment