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.

15 lines
296 B

@echo off
echo.
echo This will build the littlecms DLL using Borland C 5.5 compiler.
echo.
echo Press Ctrl-C to abort, or
pause
bcc32 @lcmsdll.lst
if errorlevel 0 ilink32 @lcmsdll.lk
if errorlevel 0 brc32 -fe ..\..\bin\lcms.dll lcms.rc
del *.obj
del *.res
echo Done!