⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.msc

📁 一个内存数据库的源代码这是服务器端还有客户端
💻 MSC
📖 第 1 页 / 共 3 页
字号:
## 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\optimizer!INCLUDE $(TOPDIR)\rules.mscall: all-msccheck: check-mscinstall: install-mscEXTRA_DIST_DIR =  TestsCFLAGS=$(CFLAGS) $(thread_safe_flag_spec)INCLUDES = -I$(SRCDIR) "-I..\mal" "-I..\modules\mal" $(MONETDB_INCS) $(Z_CFLAGS) $(BZ_CFLAGS) $(PCL_FLAGS) $(PCRE_CFLAGS)lib_optimizer.dll:  ..\mal\libmal.lib ..\modules\mal\lib_pbm.liblib_optimizer_LIBS = ..\mal\libmal.lib $(MONETDB_LIBS) libbat.lib ..\modules\mal\lib_pbm.lib libstream.lib $(SOCKET_LIBS) $(Z_LIBS) $(BZ_LIBS) $(MALLOC_LIBS) $(PTHREAD_LIBS) $(DL_LIBS)lib_optimizer_OBJS = opt_prelude.obj opt_support.obj opt_crack.obj optimizer.obj opt_factorize.obj opt_deadcode.obj opt_garbageCollector.obj opt_strengthReduction.obj opt_aliases.obj opt_commonTerms.obj opt_partitionedQuery.obj opt_coercion.obj opt_emptySet.obj opt_peephole.obj opt_multiplex.obj opt_singleton.obj opt_costModel.obj opt_reduce.obj opt_macro.obj opt_accumulators.obj opt_qep.obj opt_mergetable.obj opt_generators.obj opt_remoteQueries.obj opt_joinselect.obj opt_constantExpression.obj opt_inliners.obj opt_pushranges.obj opt_accessmode.obj opt_joinpath.obj opt_heuristics.objlib_optimizer_DEPS = $(lib_optimizer_OBJS)lib_optimizer.lib: lib_optimizer.dlllib_optimizer.dll: $(lib_optimizer_DEPS) 	$(CC) $(CFLAGS) -LD -Felib_optimizer.dll $(lib_optimizer_OBJS) /link $(lib_optimizer_LIBS)	if exist $@.manifest $(MT) -manifest $@.manifest -outputresource:$@;2	if not exist .libs $(MKDIR) .libs	$(INSTALL) "lib_optimizer.dll" ".libs\lib_optimizer.dll"!IFDEF NEED_MXopt_support.mal: "$(SRCDIR)\opt_support.mx"opt_singleton.mal: "$(SRCDIR)\opt_singleton.mx"opt_strengthReduction.mal: "$(SRCDIR)\opt_strengthReduction.mx"opt_commonTerms.c: "$(SRCDIR)\opt_commonTerms.mx"opt_reduce.h: "$(SRCDIR)\opt_reduce.mx"opt_commonTerms.h: "$(SRCDIR)\opt_commonTerms.mx"opt_constantExpression.mal: "$(SRCDIR)\opt_constantExpression.mx"opt_emptySet.mal: "$(SRCDIR)\opt_emptySet.mx"opt_reduce.c: "$(SRCDIR)\opt_reduce.mx"opt_aliases.h: "$(SRCDIR)\opt_aliases.mx"opt_multiplex.mal: "$(SRCDIR)\opt_multiplex.mx"opt_commonTerms.mal: "$(SRCDIR)\opt_commonTerms.mx"opt_joinselect.mal: "$(SRCDIR)\opt_joinselect.mx"opt_pushranges.mal: "$(SRCDIR)\opt_pushranges.mx"opt_accessmode.mal: "$(SRCDIR)\opt_accessmode.mx"opt_deadcode.mal: "$(SRCDIR)\opt_deadcode.mx"opt_partitionedQuery.h: "$(SRCDIR)\opt_partitionedQuery.mx"opt_partitionedQuery.c: "$(SRCDIR)\opt_partitionedQuery.mx"opt_qep.mal: "$(SRCDIR)\opt_qep.mx"opt_mergetable.mal: "$(SRCDIR)\opt_mergetable.mx"opt_singleton.h: "$(SRCDIR)\opt_singleton.mx"opt_heuristics.c: "$(SRCDIR)\opt_heuristics.mx"opt_singleton.c: "$(SRCDIR)\opt_singleton.mx"opt_joinpath.mal: "$(SRCDIR)\opt_joinpath.mx"opt_coercion.mal: "$(SRCDIR)\opt_coercion.mx"opt_qep.h: "$(SRCDIR)\opt_qep.mx"opt_qep.c: "$(SRCDIR)\opt_qep.mx"opt_heuristics.h: "$(SRCDIR)\opt_heuristics.mx"opt_accumulators.c: "$(SRCDIR)\opt_accumulators.mx"opt_accumulators.h: "$(SRCDIR)\opt_accumulators.mx"opt_constantExpression.c: "$(SRCDIR)\opt_constantExpression.mx"opt_pushranges.h: "$(SRCDIR)\opt_pushranges.mx"opt_constantExpression.h: "$(SRCDIR)\opt_constantExpression.mx"opt_pushranges.c: "$(SRCDIR)\opt_pushranges.mx"opt_multiplex.h: "$(SRCDIR)\opt_multiplex.mx"opt_multiplex.c: "$(SRCDIR)\opt_multiplex.mx"opt_garbageCollector.mal: "$(SRCDIR)\opt_garbageCollector.mx"opt_coercion.c: "$(SRCDIR)\opt_coercion.mx"opt_generators.h: "$(SRCDIR)\opt_generators.mx"opt_generators.c: "$(SRCDIR)\opt_generators.mx"opt_coercion.h: "$(SRCDIR)\opt_coercion.mx"opt_support.c: "$(SRCDIR)\opt_support.mx"opt_support.h: "$(SRCDIR)\opt_support.mx"opt_garbageCollector.c: "$(SRCDIR)\opt_garbageCollector.mx"opt_emptySet.c: "$(SRCDIR)\opt_emptySet.mx"opt_crack.h: "$(SRCDIR)\opt_crack.mx"opt_garbageCollector.h: "$(SRCDIR)\opt_garbageCollector.mx"opt_crack.c: "$(SRCDIR)\opt_crack.mx"opt_emptySet.h: "$(SRCDIR)\opt_emptySet.mx"opt_joinpath.h: "$(SRCDIR)\opt_joinpath.mx"opt_joinpath.c: "$(SRCDIR)\opt_joinpath.mx"opt_partitionedQuery.mal: "$(SRCDIR)\opt_partitionedQuery.mx"opt_crack.mal: "$(SRCDIR)\opt_crack.mx"

⌨️ 快捷键说明

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