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

📄 makefile

📁 COG-VP12864液晶屏驱动代码及对应RTC实例
💻
字号:
# $Id: Makefile,v 1.0 2004/08/25 10:33:14 philip $  include files.mk####################################################################### This file contains information about your configuration.####################################################################### system type SDE4AR = sde-ar crsCONV = sde-convCC = sde-gcc# fp emulation type NONE# Target type(s)TARGETS = LOOPT = -O0FLAGS = -mcpu=r4000 -EL $(OPT) -DPMCC $(MACHINE) -G0 -DALGSDE -nostdinc -I../includeCFLAGS = $(FLAGS) -DLANGUAGE_CASFLAGS = $(FLAGS) -DLANGUAGE_ASSEMBLY -x assembler-with-cpp -traditional# Because pmon has used 8M SDRAM(0xa0800000), we use other not to cover pmon# 2004.08.27, philip add, we will use 0xa0050000 - 0xa0090000.ADDR = a0050010		PROGS = hello.SUFFIXES: .srec.c.o:	$(CC) $(CFLAGS) -c $<.S.o:	$(CC) $(ASFLAGS) -c $<.s.o:	$(CC) $(ASFLAGS) -c $<.c.srec:	$(CC) $(CFLAGS) -N -nostdinc -nostdlib -Ttext $(ADDR) -o $* $< -lc	$(CONV) -y -f s3 -o $*.srec $*	PCI_OBJS = boot.o irq.o uart.o exc_handler.o hello.o \	   cache.o asm_irq.o asm_exc_handler.o 	hello : $(PCI_OBJS)	$(CC) $(FLAGS) -N -nostdlib -Ttext $(ADDR) -o hello $(PCI_OBJS) -lc	$(CONV) -y -f s3 -o hello.srec helloclean :	rm -f $(PROGS) *.srec *.o *.dis

⌨️ 快捷键说明

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