makefile

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

TXT
30
字号
CC=gcc.c.o:	ds cas das reloc semi nl	$(CC) -c -g $*.cDASOBJS=das.oDSOBJS=ds.oCASOBJS=cas.o link.o st.o res.o op.o ex.o io.oRELOCOBJS=reloc.oSEMIOBJS=semi.oNLOBJS=nl.oall:	ds cas das reloc semi nldas:	$(DASOBJS)	$(CC) -o das $(DASOBJS)ds:	$(DSOBJS)	$(CC) -o ds $(DSOBJS)cas:	$(CASOBJS)	$(CC) -o cas $(CASOBJS)reloc:	$(RELOCOBJS)	$(CC) -o reloc $(RELOCOBJS)semi:	$(SEMIOBJS)	$(CC) -o semi $(SEMIOBJS)nl:	$(NLOBJS)	$(CC) -o nl $(NLOBJS)cas.o:	io.h op.h st.h link.hlink.o:	io.h ex.h res.h st.hst.o:	io.h ex.h op.h res.hres.o:	io.h ex.h st.h res.hop.o:	io.h ex.h st.h res.h op.hex.o:	io.h ex.h st.h res.hio.o:	io.h op.h

⌨️ 快捷键说明

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