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

📄 makefile

📁 Small Device C Compiler 面向Inter8051
💻
字号:
# Simple Makefile for dhrystone and sdccTOPDIR = ../../..PROC = z80CC = $(TOPDIR)/bin/sdcc# -DNOENUM is here to make the results more predictableCFLAGS += -DREG= -DNOSTRUCTASSIGN -DNOENUM -V -m$(PROC) --profile --dumpall --stack-autoOBJ = dhry.oall: dhry.bindhry.ihx: dhry.c	$(CC) $(CFLAGS) dhry.cdhry.gb: dhry.c	$(CC) $(CFLAGS) dhry.cdhry.c: dhry.hdhry.bin: dhry.ihx	cat $< | $(TOPDIR)/bin/makebin > $@native:	gcc -g -O2 -DREG= -DNOSTRUCTASSIGN -DNOENUM -o dhry dhry.cclean:	rm -f *~ dhry *.o *.gb *.ihx *.rel *.dump* *.lst *.sym *.map *.asm *.bin *.gb

⌨️ 快捷键说明

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