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

📄 makefile

📁 最新版本!fastdb是高效的内存数据库系统
💻
字号:
#
CC=mcs
#
CFLAGS= -unsafe 
DEBUG= -g
#
LIB_TARGET=FastDbNet
LIB_FILES=FastDbCli.cs FastDbFields.cs FastDbCommand.cs FastDbConnection.cs AssemblyInfo.cs
LIB_DEFS= -define:LINUX
#
all:	$(LIB_TARGET) test

clean:
		rm $(LIB_TARGET).dll *.fdb

$(LIB_TARGET):	$(LIB_FILES)
		$(CC) $(CFLAGS) $(DEBUG) -target:library -out:$(LIB_TARGET).dll $(LIB_DEFS) $(LIB_FILES)

test:	$(LIB_TARGET).dll TestIndex.cs
		$(CC) $(DEBUG) -target:exe -out:TestIndex.exe -lib:./ -reference:$(LIB_TARGET).dll TestIndex.cs 

#
.SUFFIXES : .cs

⌨️ 快捷键说明

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