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

📄 makefile

📁 IR Decoding source code
💻
字号:
TARGET = irLIBS = -L../lib -lserialDEVC_PREFIX = m6811-elf-CC = $(DEVC_PREFIX)gccAS = $(DEVC_PREFIX)asAR = $(DEVC_PREFIX)arSIZE = $(DEVC_PREFIX)sizeOBJCOPY = $(DEVC_PREFIX)objcopy.SUFFIXES: .elf .s19 .b## Options to creates the .s19 or .b files from the elf#OBJCOPY_FLAGS=--only-section=.text \              --only-section=.rodata \	      --only-section=.vectors## Rule to create an S19 file from an ELF file.#.elf.s19:	$(OBJCOPY) --output-target=srec $(OBJCOPY_FLAGS) $< $*.s19## Rule to create an binary dump from an ELF file.#.elf.b:	$(OBJCOPY) --output-target=binary $(OBJCOPY_FLAGS) $< $*.b## Rule to create an ELF file from an object#.o.elf:	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)all :: $(TARGET).b $(TARGET).s19$(TARGET).elf : $(TARGET).o memory.x $(VECTORS.S)ASFLAGS += -m68hc11 --print-insn-syntax -ahls=$*.lst # --gstabsTARGETS =  $(TARGET).b $(TARGET).s19$(TARGET).elf : vectors.sall :: $(TARGETS)$(TARGETS.MC6811) :: memory.xclean::	$(RM) *.o	$(RM) *.elf	$(RM) *.s19	$(RM) *.b	$(RM) *.a	$(RM) *.lstdist-clean::	clean	$(RM) m68hc11.ram	$(RM) *~	$(RM) #*

⌨️ 快捷键说明

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