makefile

来自「一个C style Assembler的source code」· 代码 · 共 22 行

TXT
22
字号
LINKFLAGS	=-oCC	=qclCLIENT_OBJ	=client.obj com.objDEMO_OBJ	=demo.obj com.objSERIAL_OBJ	=serial.obj micronet.obj com.obj console.objall:	client.exe demo.exe serial.execlient:	client.exedemo:	demo.exeserial:	serial.execlient.obj:	client.c com.h port.hdemo.obj:	demo.c com.h port.hserial.obj:	serial.c com.h port.h micronet.h console.hmicronet.obj:	micronet.c com.h port.h micronet.hcom.obj:	com.c    com.h port.hconsole.obj:	console.cclient.exe:	$(CLIENT_OBJ)	$(CC) $(LINKFLAGS) client $(CLIENT_OBJ)demo.exe:	$(DEMO_OBJ)	$(CC) $(LINKFLAGS) demo $(DEMO_OBJ)serial.exe:	$(SERIAL_OBJ)	$(CC) $(LINKFLAGS) serial $(SERIAL_OBJ)

⌨️ 快捷键说明

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