📄 makefile.msc
字号:
## 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\php\Cimpl!INCLUDE $(TOPDIR)\rules.mscall: all-recursive all-msccheck: check-recursive check-mscinstall: install-recursive install-mscX_CFLAGS = -DCOMPILE_DL_MONETDB=1 -D_GNU_SOURCEmonetdb_la_LDFLAGS = -moduleexamples-all: "examples-dir" "examples-Makefile" $(CD) "examples" && $(MAKE) /nologo "prefix=$(prefix)" all examples-dir: if not exist "examples" $(MKDIR) "examples"examples-Makefile: "$(SRCDIR)\examples\Makefile.msc" $(INSTALL) "$(SRCDIR)\examples\Makefile.msc" "examples\Makefile"examples-check: "examples" $(CD) "examples" && $(MAKE) /nologo "prefix=$(prefix)" checkexamples-install: "$(bindir)" "$(libdir)" $(CD) "examples" && $(MAKE) /nologo "prefix=$(prefix)" installall-recursive: "examples-all" check-recursive: "examples-check" install-recursive: "examples-install" INCLUDES = -I$(SRCDIR) "-I..\..\mapilib" -I$(SRCDIR)\..\..\mapilib $(MONETDB_CFLAGS) $(PHP_INCS)CFLAGS=$(CFLAGS) $(thread_safe_flag_spec)SWIGFLAGS = -I..\..\mapilibphp_monetdb.dll: ..\..\mapilib\libMapi.libphp_monetdb_LIBS = ..\..\mapilib\libMapi.lib $(MAPI_LIBS) $(PHP_LIBS)php_monetdb_OBJS = php_monetdb.objphp_monetdb_DEPS = $(php_monetdb_OBJS)php_monetdb.lib: php_monetdb.dllphp_monetdb.dll: $(php_monetdb_DEPS) $(CC) $(CFLAGS) -LD -Fephp_monetdb.dll $(php_monetdb_OBJS) /link $(php_monetdb_LIBS) if exist $@.manifest $(MT) -manifest $@.manifest -outputresource:$@;2!IFDEF NEED_MX!ENDIF #NEED_MXphp_monetdb.obj: "$(SRCDIR)\php_monetdb.c" "$(SRCDIR)\php_monetdb.h" "..\..\mapilib\Mapi.h" $(CC) $(CFLAGS) $(GENDLL) -DLIBMONETDB -DCOMPILE_DL_MONETDB -Fo"php_monetdb.obj" -c "$(SRCDIR)\php_monetdb.c"all-msc: "php_monetdb.dll"check-msc: all-msc "php_monetdb.dll"install-msc: install-exec install-datainstall-exec: "install_php_monetdb" install_php_monetdb: "php_monetdb.dll" "$(prefix)\$(PHP_EXTENSIONDIR)" $(INSTALL) "php_monetdb.dll" "$(prefix)\$(PHP_EXTENSIONDIR)\php_monetdb.dll""$(prefix)\$(PHP_EXTENSIONDIR)": if not exist "$(prefix)\$(PHP_EXTENSIONDIR)" $(MKDIR) "$(prefix)\$(PHP_EXTENSIONDIR)"install-data:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -