3 Star 1 Fork 1

Gitee 极速下载/lynx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/kurtchen/Lynx
克隆/下载
bcblibs.bat 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
Kurt Chen 提交于 2014-07-02 16:51 . merge lynx 2.8.9dev.1
@echo off
rem $LynxId: bcblibs.bat,v 1.5 2012/07/05 23:32:15 tom Exp $
rem Use this script to construct import-libraries for the Borland C compiler
rem from the dll's in the GnuWin32 directory.
rem
rem The script assumes that the Borland C compiler is already in your %PATH%
rem search-list. It also uses the Windows 2000 command-extensions, which are
rem provided in Windows XP and later by default.
setlocal
rem Check if GW32_ROOT is defined, and if not, fill in a default value.
if not "x%GW32_ROOT%"=="x" goto exists
set GW32_ROOT=c:\app\gnuwin32
:exists
if exist "%GW32_ROOT%" goto doit
echo ? %GW32_ROOT% does not exist
goto finish
:doit
rem do this just in case it is needed
set PATH=%PATH%;%GW32_ROOT\bin
set SAVE_CD="%CD%"
cd %GW32_ROOT%
if not exist bcblibs mkdir bcblibs
cd bin
if ERRORLEVEL 1 goto failed
for %%N in (*.dll) do call :implib %%~nN%
cd %CD%
goto finish
:implib
echo making import-library for %1
set SOURCE=%1.dll
set TARGET=..\bcblibs\%1.lib
copy %1.dll ..\bcblibs
implib -a %TARGET% %1.dll
:goto :eof
:failed
:finish
endlocal
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/lynx.git
git@gitee.com:mirrors/lynx.git
mirrors
lynx
lynx
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891