代码拉取完成,页面将自动刷新
同步操作将从 Yangyan Xu/galib遗传算法库 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# -*- Mode: makefile -*-
# Copyright (c) 1999-2005 Matthew Wall, all rights reserved
# makefile variables for compiling on windows
# -----------------------------------------------------------------------------
LIB_NAME= ga
### Set these directories to whatever is appropriate for your system. These
### used only if you do a 'make install'. They specify where the library and
### header files should be installed.
DESTDIR=c:\temp
HDR_DEST_DIR=$(DESTDIR)\include
LIB_DEST_DIR=$(DESTDIR)\lib
MKDEPEND = echo
MKDIR = mkdir
CP = xcopy
RM = del /f
CXX = cl.exe
LD = link.exe
AR = lib.exe
INSTALL = copy
# Here is a quick summary of the switches that cause much grief. These are
# for the microsoft visual c++ compilers.
#
# switch thread dll/exe library
# /MD multi DLL MSCVRT.LIB
# /ML single EXE LIBC.LIB
# /MT multi EXE LIBCMT.LIB
#
# /GR enable RTTI
# /GX enable synchronous exception handling
# /YX automate precompiled header
# /FD generate file dependencies
CFLAGS = /nologo /D_WINDOWS /DWIN32 /D_MBCS /W3 /GR /GX /TP
LFLAGS = /nologo /subsystem:console /incremental:no
!ifdef RELEASE_BUILD
CXXDLLFLAGS = $(CFLAGS) /DNDEBUG /MD /O2
CXXLIBFLAGS = $(CFLAGS) /DNDEBUG /MT /O2
CXXEXEFLAGS = $(CFLAGS) /DNDEBUG /MT /O2
LINKFLAGS = $(LFLAGS)
!else
CXXDLLFLAGS = $(CFLAGS) /D_DEBUG /MDd /Od /Zi
CXXLIBFLAGS = $(CFLAGS) /D_DEBUG /MTd /Od /Zi
CXXEXEFLAGS = $(CFLAGS) /D_DEBUG /MTd /Od /Zi
LINKFLAGS = $(LFLAGS) /debug
!endif
!ifdef SHARED_BUILD
!ifdef LIBRARY_BUILD
CXXFLAGS = $(CXXDLLFLAGS) /DCOMPILE_GALIB_AS_DLL /D_USRDLL
LINKFLAGS = $(LINKFLAGS) /dll
!else
CXXFLAGS = $(CXXEXEFLAGS) /DUSE_GALIB_AS_DLL
LINKFLAGS = $(LINKFLAGS)
!endif
!else
!ifdef LIBRARY_BUILD
CXXFLAGS = $(CXXLIBFLAGS) /DCOMPILE_GALIB_AS_LIB /D_LIB
LINKFLAGS = $(LINKFLAGS)
!else
CXXFLAGS = $(CXXEXEFLAGS) /DUSE_GALIB_AS_LIB
LINKFLAGS = $(LINKFLAGS)
!endif
!endif
LDFLAGS = $(LINKFLAGS)
ARFLAGS = /nologo
.SUFFIXES:
.SUFFIXES: .C
.C.o:
$(CXX) $(CXXFLAGS) /c $< /Fo$*.o
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。