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

📄 makefile

📁 Unix 环境下用C语言实现的内存数据库。
💻
字号:
CFLAGS=-g -DDEBUG -I../mdbLIBS=-L../mdb -lmdbSRC=create.cCC=cc.SUFFIXES: .c .oOBJS=$(SRC:.c=.o)all: create insert select delete drop fetchcreate: create.o 	$(CC) $(CFLAGS) -o create create.o  $(LIBS)insert: insert.o 	$(CC) $(CFLAGS) -o insert insert.o  $(LIBS)select: select.o 	$(CC) $(CFLAGS) -o select select.o  $(LIBS)delete: delete.o 	$(CC) $(CFLAGS) -o delete delete.o  $(LIBS)drop: drop.o	$(CC) $(CFLAGS) -o drop drop.o $(LIBS)fetch: fetch.o	$(CC) $(CFLAGS) -o fetch fetch.o $(LIBS).c.o:	$(CC) $(CFLAGS) -c $*.cclean::	rm -f create insert select delete drop fetch *.o

⌨️ 快捷键说明

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