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

📄 makefile

📁 一个C style Assembler的source code
💻
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -