📄 makefile2
字号:
# 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 + -