📄 mkwin95.bat
字号:
@echo offecho Windows 95 Batch file: makes the Simple Sockets Library from aecho MSDOS consoleecho Batch file for Borland C++ v5.0 or betterecho echo Authors: Charles E. Campbell, Jr.echo Terry McRobertsecho ---------------------------------------------------------------echo rem This batch file already assumes that the files have been gunzip'ped andrem untar'red. It creates a smplskts.lib; you will also want to haverem its header files in your -I list when compiling.rem Compile the Simple Sockets Libraryecho Compiling Simple Sockets Libraryfor %%f in (*.c) do bcc32 -c -vi- -w-aus -w-csu -w-pia -I. -w-vnu -I.\HDR %%frem Build smplskts.lib Libraryecho Building smplskts.libfor %%f in (*.obj) do tlib /C smplskts +%%frem Compile and link SSL utilities and PortMaster (Spm)echo Compiling and linking SSL utilitiescd EXEfor %%f in (*.c) do bcc32 -Ot -vi- -w-aus -w-csu -w-pia -I..\HDR %%f ..\smplskts.libmv *.exe ..cd ..rem Cleanupdel *.bakdel *.objdel EXE\*.objrem Final Noteecho echo ---------------------------------------------------------------echo echo Utilities and the PortMaster (Spm) are in COSMIC\*.exeecho The Simple Sockets library is in COSMIC\smplskts.libecho Try out the examples, too!echo echo Best of luck,echo Charles E. Campbell
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -