makefile.msc

来自「这个是内存数据库的客户端」· MSC 代码 · 共 65 行

MSC
65
字号
## Use: nmake -f makefile.msc install# Nothing much configurable below# cl -help describes the options!IFDEF DEBUGCC = cl -GF -W3 -wd4273 -wd4102 -MDd -nologo -Zi -Od -D_DEBUG -RTC1 -ZI!ELSECC = cl -GF -W3 -wd4273 -wd4102 -MD -nologo -Zi -Ox!ENDIFARCHIVER = libGENDLL =RC = rcMT = mtJAVAC = javacJAR = jarANT = ant.batCFLAGS = -I. -I$(TOPDIR) $(LIBC_INCS) $(INCLUDES)# No general LDFLAGS neededINSTALL = copy# TODO# replace this hack by something like configure ...MKDIR = mkdirECHO = echoCD = cdTOPDIR = .\..\..\..\..SRCDIR = $(TOPDIR)\..\src\python\Cimpl\MonetSQLdb!INCLUDE $(TOPDIR)\rules.mscall: all-msccheck: check-mscinstall: install-mscINCLUDES = -I$(SRCDIR)__init__.py: "$(SRCDIR)\__init__.py"	$(INSTALL) "$(SRCDIR)\__init__.py" "__init__.py"converters.py: "$(SRCDIR)\converters.py"	$(INSTALL) "$(SRCDIR)\converters.py" "converters.py"cursors.py: "$(SRCDIR)\cursors.py"	$(INSTALL) "$(SRCDIR)\cursors.py" "cursors.py"monetexceptions.py: "$(SRCDIR)\monetexceptions.py"	$(INSTALL) "$(SRCDIR)\monetexceptions.py" "monetexceptions.py"times.py: "$(SRCDIR)\times.py"	$(INSTALL) "$(SRCDIR)\times.py" "times.py"all-msc:check-msc: all-msc "monetexceptions.py" "times.py" "cursors.py" "__init__.py" "converters.py"install-msc: install-exec install-datainstall-exec:  "install_monetexceptions.py" "install_times.py" "install_cursors.py" "install___init__.py" "install_converters.py" install_monetexceptions.py: "monetexceptions.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb"	$(INSTALL) "monetexceptions.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb\monetexceptions.py"install_times.py: "times.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb"	$(INSTALL) "times.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb\times.py"install_cursors.py: "cursors.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb"	$(INSTALL) "cursors.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb\cursors.py"install___init__.py: "__init__.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb"	$(INSTALL) "__init__.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb\__init__.py"install_converters.py: "converters.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb"	$(INSTALL) "converters.py" "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb\converters.py""$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb":	if not exist "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb" $(MKDIR) "$(prefix)\$(PYTHON_LIBDIR)\MonetSQLdb"install-data:

⌨️ 快捷键说明

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