makefile.win32

来自「麻省理工开发的免费遗传算法类库GAlib,很好用」· WIN32 代码 · 共 29 行

WIN32
29
字号
# Makefile for GAlib# Copyright (c) 1996-1999 Matthew Wall, all rights reservedall: lib exlib:	cd ga	nmake /nologo /f makefile.win32	cd ..ex:	cd examples	nmake /nologo /f makefile.win32	cd ..clean:	cd ga	nmake /nologo /f makefile.win32 clean	cd ..	cd examples	nmake /nologo /f makefile.win32 clean	cd ..	install:	cd ga	nmake /nologo /f makefile.win32 install	cd ..

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?