?? makefile
字號:
# Simple Makefile
# Volker Oth (c) 1999
########### change this lines according to your project ##################
#put the name of the target mcu here (at90s8515, at90s8535, attiny22, atmega603 etc.)
# MCU = at90s8515
MCU = atmega163
# MCU = at90s2313 #geht nicht
# MCU = at90s4433 #geht nicht
#put the name of the target file here (without extension)
TRG = gpsdisp
#put your C sourcefiles here
SRC = serial.c lcd.c nmea.c $(TRG).c
#put additional assembler source file here
ASRC =
#additional libraries and object files to link
LIB =
#additional includes to compile
INC =
#compiler flags
# CPFLAGS = -g -Wall -Wstrict-prototypes -Wa,-ahlms=$(<:.c=.lst)
CPFLAGS = -g -Os -Wall -Wstrict-prototypes -Wa,-ahlms=$(<:.c=.lst)
#linker flags
LDFLAGS = -Wl,-Map=$(TRG).map,--cref
########### you should not need to change the following line #############
include $(AVR)/include/avr_make
###### dependecies, add any dependencies you need here ###################
serial.o : serial.c
lcd.o : lcd.c
nmea.o : nmea.c
$(TRG).o : $(TRG).c
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -