makefile

来自「基于UNIX的中间件编程,只能运行于UNIX操作系统」· 代码 · 共 24 行

TXT
24
字号
#this make file used to compile the middleware sorftwareobjlist=main.o queue.o tcpdtc.o  shm.ooutfile=middleservermain:$(objlist)	cc_r  -o $(outfile) $(objlist) main.o:main.c main.h	cc_r -c   main.cshm.o:shm.c shm.h	@echo start to compile the shm.c	@cc_r -c   shm.c 	@echo end compile the shm.cqueue.o:queue.c include.h	@echo start to compile the queue.c	@cc_r -c   queue.c 	@echo end compile the queue.ctcpdtc.o:tcpdtc.c tcpdtc.h include.h	@echo complie the tcpdtc.c	@cc_r -c  tcpdtc.c	@echo end compile tcpdtc.c			

⌨️ 快捷键说明

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