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

📄 makefile2

📁 RC5红外遥控 解码程序.. AVR单片机
💻
字号:
# AVR-GCC Test by Bray++

#include $(AVR)/include/make1

########### change this lines according to your project ##################

#put the name of the target mcu here (-2313, -8515, -8535, -mega103, -mega106)
        MCU     = -8515

#put the name of the target file here (without extension)
        TRG     = main

#put your C sourcefiles here
        SRC     = $(TRG).c lcd.c

#put additional assembler source file here
        ASRC    =

#needed libraries and object files to link
        LIB     =

#needed includes to compile
        INC	=

#compiler flags
        CPFLAGS = -Os -Wall

#assembler flags
        ASFLAGS = -L

#linker flags
        LDFLAGS = -v -l$(TRG).lnk

########### you should not need to change the following line #############
#include $(AVR)/include/make2

###### dependecies, add any dependencies you need here ###################
$(TRG).o : $(TRG).c
lcd.o: lcd.c

⌨️ 快捷键说明

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