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

📄 makefile.bak

📁 针对嵌入式micro window系统
💻 BAK
字号:
#*#**********************************************************#*  $Id: Makefile,v 1.6 2003/04/08 16:10:12 cvs Exp $#*  Copyright(C) 2001-2002 Triscend Corporation. All Rights Reserved.#*  This file is licensed under the terms of Triscend SDK License Agreement.#**********************************************************#*CROSS = arm-elf-CC = $(CROSS)gcc## Define the CPU type#CPU_OPTS = -mcpu=arm7tdmi ## Define the compiler options#CFLAGS    = -g -ggdb $(CPU_OPTS) \	   -Wall -D__uclinux__ -msoft-float -I../include## Define the linker options#LDFLAGS    = -Wl,-elf2flt -L../lib -lnano-X## Define the application name#APP_NAME  = chenTestChinese## Define the objects needed to make the application#APP_OBJS = chenTestChinese.oall : $(APP_NAME)install: $(APP_NAME)	cp $(APP_NAME) ../binclean:	rm -f *.o *.elf *.map *.gdb $(APP_NAME)## Rule to link the application#$(APP_NAME): $(APP_OBJS)	$(CC) $(LDFLAGS) $(APP_OBJS) -o $@

⌨️ 快捷键说明

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