亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? makefile

?? 一個基于AVR 單片機的操作系統,有組于了解操作系統在單片機上運行的內幕.
??
字號:
# Hey Emacs, this is a -*- makefile -*-
#
# 09/18/2005 - Removed serialio.S from library.  Each project that wants to
# use the monitor needs to either supply their own serial i/o file, or point
# explicitely to the avrx one so it is built for their processor.
#
# 09/15/2005 - Modified by Larry Barello to build the AvrX library.
# this only works with GCC.  IAR folks are on their own.  The old IAR makefile
# is renamed: "makefile.old.iar" and will need rules added for the C source code
# for AvrXFifo
#
# WinAVR Sample makefile written by Eric B. Weddington, J鰎g Wunsch, et al.
# Released to the Public Domain
# Please read the make user manual!
#
# Additional material for this makefile was submitted by:
#  Tim Henigan
#  Peter Fleury
#  Reiner Patommel
#  Sander Pool
#  Frederik Rouleau
#  Markus Pfaff
#
# On command line:
#
# make	   = Make software
# make lib = Make software
# make all = Make software.
#
# make clean = Clean out built project files.
#
# make coff = Convert ELF to AVR COFF (for use with AVR Studio 3.x or VMLAB).
#
# make extcoff = Convert ELF to AVR Extended COFF (for use with AVR Studio
#                4.07 or greater).
#
# make program = Download the hex file to the device, using avrdude.  Please
#                customize the avrdude settings below first!
#
# make filename.s = Just compile filename.c into the assembler code only
#
# To rebuild project do "make clean" then "make all".
#
TRUE	= 1
FALSE	= 0

# MCU name
ABSPATH=D:/Program Files/WinAVR/AvrX2.6f
#MCU = at90s8515			# this is about as generic an AVR you can get.

  MCU = 
  AAVRMCU = 1
  GCCMCU = atmega16
  AVRXMCU = 

# Output format. (can be srec, ihex, binary)

FORMAT = ihex

# Target file name (without extension).

TARGET = gcc
SINGLESTEP	= -DSINGLESTEPSUPPORT

#list C source files

SRC = AvrXFifo.c

# List Assembler source files here.
# Make them always end in a capital .S.  Files ending in a lowercase .s
# will not be considered source files but generated files (assembler
# output from the compiler), and will be deleted upon "make clean"!
# Even though the DOS/Win* filesystem matches both .s and .S the same,
# it will preserve the spelling of the filenames, and gcc itself does
# care about how the name is spelled on its command-line.



ASRC =  monitor.S \
	avrx_tasking.S \
	avrx_semaphores.S \
	avrx_resetsemaphore.S \
	avrx_reschedule.S \
	avrx_singlestep.S \
	avrx_terminate.S \
	avrx_halt.S \
	avrx_priority.S \
	avrx_suspend.S \
	avrx_testsemaphore.S \
	avrx_message.S \
	avrx_recvmessage.S \
	avrx_timequeue.S \
	avrx_starttimermessage.S \
	avrx_canceltimer.S \
	avrx_canceltimermessage.S\
	avrx_generatesinglestepinterrupt.S\
	avrx_eeprom.S

GCCLIB =

# Optimization level, can be [0, 1, 2, 3, s].
# 0 = turn off optimization. s = optimize for size.
# (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
OPT = s

# Debugging format.
# Native formats for AVR-GCC's -g are stabs [default], or dwarf-2.
# AVR (extended) COFF requires stabs, plus an avr-objcopy run.
#DEBUG = stabs
DEBUG = dwarf-2
#ABSPATH=$(AVRX)/AVRX

# List any extra directories to look for include files here.
#     Each directory must be seperated by a space.
EXTRAINCDIRS =

# Compiler flag to set the C Standard level.
# c89   - "ANSI" C
# gnu89 - c89 plus GCC extensions
# c99   - ISO C99 standard (not yet fully implemented)
# gnu99 - c99 plus GCC extensions
CSTANDARD = -std=gnu99

# Place -D or -U options here
CDEFS = $(SINGLESTEP)

# Place -I options here
CINCS = -I../avrx


# Compiler flags.
#  -g*:          generate debugging information
#  -O*:          optimization level
#  -f...:        tuning, see GCC manual and avr-libc documentation
#  -Wall...:     warning level
#  -Wa,...:      tell GCC to pass this to the assembler.
#    -adhlns...: create assembler listing
CFLAGS = -g$(DEBUG)
CFLAGS += $(CDEFS) $(CINCS)
CFLAGS += -O$(OPT)
#CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
#CFLAGS += -funsigned-bitfields -fpack-struct -fshort-enums -fnew-ra
CFLAGS += -funsigned-bitfields -fpack-struct -fshort-enums
CFLAGS += -Wall -Wstrict-prototypes
CFLAGS += -Wa,-adhlns=$(<:.c=.lst)
CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
CFLAGS += $(CSTANDARD)

# Assembler flags.
#  -Wa,...:   tell GCC to pass this to the assembler.
#  -ahlms:    create listing
#  -gstabs:   have the assembler create line number information; note that
#             for use in COFF files, additional information about filenames
#             and function names needs to be present in the assembler source
#             files -- see avr-libc docs [FIXME: not yet described there]
ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs

#Additional libraries.

# Minimalistic printf version
PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min

# Floating point printf version (requires MATH_LIB = -lm below)
PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt

PRINTF_LIB =

# Minimalistic scanf version
SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min

# Floating point + %[ scanf version (requires MATH_LIB = -lm below)
SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt

SCANF_LIB =

MATH_LIB = -lm

# External memory options

# 64 KB of external RAM, starting after internal RAM (ATmega128!),
# used for variables (.data/.bss) and heap (malloc()).
#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff

# 64 KB of external RAM, starting after internal RAM (ATmega128!),
# only used for heap (malloc()).
#EXTMEMOPTS = -Wl,--defsym=__heap_start=0x801100,--defsym=__heap_end=0x80ffff

EXTMEMOPTS =

# Linker flags.
#  -Wl,...:     tell GCC to pass this to linker.
#    -Map:      create map file
#    --cref:    add cross reference to  map file
LDFLAGS = -Wl,-Map=$(TARGET).map,--cref
LDFLAGS += $(EXTMEMOPTS)
LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB)

# Library support

AR	= avr-ar -rcsv

# Programming support using avrdude. Settings and variables.

# Programming hardware: alf avr910 avrisp bascom bsd
# dt006 pavr picoweb pony-stk200 sp12 stk200 stk500
#
# Type: avrdude -c ?
# to get a full listing.
#
AVRDUDE_PROGRAMMER = stk500

# com1 = serial port. Use lpt1 to connect to parallel port.
AVRDUDE_PORT = com4    # programmer connected to serial device
#AVRDUDE_BAUD = 38400
#AVRDUDE_PORT = com1    # programmer connected to serial device
AVRDUDE_BAUD = 115200

AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep


# Uncomment the following if you want avrdude's erase cycle counter.
# Note that this counter needs to be initialized first using -Yn,
# see avrdude manual.
#AVRDUDE_ERASE_COUNTER = -y

# Uncomment the following if you do /not/ wish a verification to be
# performed after programming the device.
#AVRDUDE_NO_VERIFY = -V

# Increase verbosity level.  Please use this when submitting bug
# reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
# to submit bug reports.
#AVRDUDE_VERBOSE = -v -v

AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -b $(AVRDUDE_BAUD)
AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY)
AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE)
AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER)



# ---------------------------------------------------------------------------

# Define directories, if needed.D:\Program Files\WinAVR\AvrX2.6f\avrx
DIRAVR = D:/Program Files/WinAVR
DIRAVRBIN = $(DIRAVR)/bin
DIRAVRUTILS = $(DIRAVR)/utils/bin
DIRINC = .
DIRLIB = $(DIRAVR)/avr/lib


# Define programs and commands.
SHELL = sh
CC = avr-gcc
OBJCOPY = avr-objcopy
OBJDUMP = avr-objdump
SIZE = avr-size
NM = avr-nm
AVRDUDE = avrdude
REMOVE = rm -f
COPY = cp
AR = avr-ar -rcsv

# Define Messages
# English
MSG_ERRORS_NONE = Errors: none
MSG_BEGIN = -------- begin --------
MSG_END = --------  end  --------
MSG_SIZE_BEFORE = Size before:
MSG_SIZE_AFTER = Size after:
MSG_COFF = Converting to AVR COFF:
MSG_EXTENDED_COFF = Converting to AVR Extended COFF:
MSG_FLASH = Creating load file for Flash:
MSG_EEPROM = Creating load file for EEPROM:
MSG_EXTENDED_LISTING = Creating Extended Listing:
MSG_SYMBOL_TABLE = Creating Symbol Table:
MSG_LINKING = Linking:
MSG_COMPILING = Compiling:
MSG_ASSEMBLING = Assembling:
MSG_CLEANING = Cleaning project:




# Define all object files.
OBJ = $(SRC:.c=.o) $(ASRC:.S=.o)

# Define all listing files.
LST = $(ASRC:.S=.lst) $(SRC:.c=.lst)


# Compiler flags to generate dependency files.
GENDEPFLAGS = -Wp,-M,-MP,-MT,$(*F).o,-MF,.dep/$(@F).d


# Combine all necessary flags and optional flags.
# Add target processor to flags.
ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) $(GENDEPFLAGS)
ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)


# Default target.

#all: begin gccversion sizebefore build sizeafter finished end
all: sizebefore build sizeafter

build: lib
#build: coff hex lss sym

elf: $(TARGET).elf
hex: $(TARGET).hex
eep: $(TARGET).eep
lss: $(TARGET).lss
sym: $(TARGET).sym
lib: $(TARGET).a

# Eye candy.
# AVR Studio 3.x does not check make's exit code but relies on
# the following magic strings to be generated by the compile job.
begin:
	@echo
	@echo $(MSG_BEGIN)

finished:
#	@echo $(MSG_ERRORS_NONE)

end:
	@echo $(MSG_END)
	@echo


# Display size of file.
HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
ELFSIZE = $(SIZE) -A $(TARGET).elf
sizebefore:
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi

sizeafter:
	@if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi



# Display compiler version information.
gccversion :
	@$(CC) --version



# Program the device.
program: $(TARGET).hex $(TARGET).eep
	$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)




# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
COFFCONVERT=$(OBJCOPY) --debugging \
--change-section-address .data-0x800000 \
--change-section-address .bss-0x800000 \
--change-section-address .noinit-0x800000 \
--change-section-address .eeprom-0x810000


coff: $(TARGET).elf
	@echo
	@echo $(MSG_COFF) $(TARGET).cof
	$(COFFCONVERT) -O coff-avr $< $(TARGET).cof


extcoff: $(TARGET).elf
	@echo
	@echo $(MSG_EXTENDED_COFF) $(TARGET).cof
	$(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof



# Create final output files (.hex, .eep) from ELF output file.
%.hex: %.elf
	@echo
	@echo $(MSG_FLASH) $@
	$(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@

%.eep: %.elf
	@echo
	@echo $(MSG_EEPROM) $@
	-$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
	--change-section-lma .eeprom=0 -O $(FORMAT) $< $@

# Create extended listing file from ELF output file.
%.lss: %.elf
	@echo
	@echo $(MSG_EXTENDED_LISTING) $@
	$(OBJDUMP) -h -S $< > $@

# Create a symbol table from ELF output file.
%.sym: %.elf
	@echo
	@echo $(MSG_SYMBOL_TABLE) $@
	$(NM) -n $< > $@



# Link: create ELF output file from object files.
.SECONDARY : $(TARGET).elf
.PRECIOUS : $(OBJ)
%.elf: $(OBJ)
	@echo
	@echo $(MSG_LINKING) $@
	$(CC) $(ALL_CFLAGS) $(OBJ) $(GCCLIB) --output $@ $(LDFLAGS)


# Compile: create object files from C source files.
%.o : %.c
	@echo
	@echo $(MSG_COMPILING) $<
	$(CC) -c $(ALL_CFLAGS) $< -o $@

# create library

%.a: $(OBJ) makefile
	$(AR) $@ $(OBJ)

# Compile: create assembler files from C source files.
%.s : %.c
	$(CC) -S $(ALL_CFLAGS) $< -o $@


# Assemble: create object files from assembler source files.
%.o : %.S
	@echo
	@echo $(MSG_ASSEMBLING) $<
	$(CC) -c $(ALL_ASFLAGS) $< -o $@



# Target: clean project.
clean: begin clean_list finished end

clean_list :
	@echo
	@echo $(MSG_CLEANING)
#	$(REMOVE) $(TARGET).hex
	$(REMOVE) $(TARGET).eep
	$(REMOVE) $(TARGET).obj
#	$(REMOVE) $(TARGET).cof
#	$(REMOVE) $(TARGET).elf
	$(REMOVE) $(TARGET).map
	$(REMOVE) $(TARGET).obj
	$(REMOVE) $(TARGET).a90
	$(REMOVE) $(TARGET).sym
	$(REMOVE) $(TARGET).lnk
	$(REMOVE) $(TARGET).lss
	$(REMOVE) $(TARGET).a
	$(REMOVE) $(OBJ)
	$(REMOVE) $(LST)
	$(REMOVE) $(SRC:.c=.s)
	$(REMOVE) $(SRC:.c=.d)
	$(REMOVE) -r .dep



# Include the dependency files.
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)


# Listing of phony targets.
.PHONY : all begin finish end sizebefore sizeafter gccversion \
build elf hex eep lss sym coff extcoff \
clean clean_list program

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美经典一区二区三区| 国产成人亚洲综合色影视| 在线观看国产日韩| 一区二区三区在线视频观看58| 粉嫩嫩av羞羞动漫久久久| 欧美国产一区在线| 97久久精品人人澡人人爽| 久久先锋影音av鲁色资源| 奇米精品一区二区三区四区 | 美女视频黄频大全不卡视频在线播放| 国产女同性恋一区二区| 国产成人aaa| 亚洲一区二区四区蜜桃| 欧美日韩一区二区三区四区五区| 香蕉成人啪国产精品视频综合网| 91精品国产aⅴ一区二区| 狂野欧美性猛交blacked| 欧美激情一二三区| 91精彩视频在线观看| 国产高清无密码一区二区三区| 91精品国产91久久久久久最新毛片| 亚洲免费观看高清完整版在线| 欧美主播一区二区三区美女| 国产日韩欧美一区二区三区综合 | 日本高清不卡视频| 蜜臀久久久99精品久久久久久| 国产精品每日更新| 日韩一区二区电影在线| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 日韩欧美中文字幕精品| 成人动漫一区二区| 亚洲三级视频在线观看| 国产精品欧美综合在线| 日韩精品在线看片z| 91久久线看在观草草青青| 国产精品白丝jk黑袜喷水| 日韩国产在线一| 天天色综合成人网| 亚洲视频1区2区| 中文字幕视频一区| 国产精品免费aⅴ片在线观看| 26uuu亚洲| 2024国产精品视频| 久久这里只有精品6| 精品日韩在线一区| 精品国产乱码久久久久久闺蜜 | 色综合色综合色综合| 波多野结衣中文一区| www.亚洲激情.com| 99久久婷婷国产精品综合| 成人app软件下载大全免费| 成人一区二区三区视频| 成人免费va视频| 91官网在线免费观看| 91精品国产入口| 日韩精品一区在线观看| 欧美国产一区视频在线观看| 亚洲欧洲99久久| 婷婷成人激情在线网| 久国产精品韩国三级视频| 国产成人免费视| 91在线视频在线| 日本电影欧美片| 日韩亚洲欧美高清| 国产无一区二区| 天天综合日日夜夜精品| 黄色日韩网站视频| 色噜噜久久综合| 日韩一区二区免费在线电影| 国产精品美女www爽爽爽| 丝袜诱惑制服诱惑色一区在线观看| 蜜桃视频一区二区| 色综合久久久久久久久久久| 欧美一区二区性放荡片| 日韩毛片视频在线看| 亚洲午夜一区二区三区| 国产精品一区不卡| 一区二区三区免费| 日韩国产高清影视| 欧美无人高清视频在线观看| 亚洲精品一区在线观看| 亚洲777理论| 在线看国产日韩| 亚洲视频1区2区| 成人黄色片在线观看| 欧美www视频| 久久国产夜色精品鲁鲁99| 欧美日韩成人综合天天影院| 亚洲日本在线看| 成人a免费在线看| 国产精品三级视频| 国产一区美女在线| 久久久99精品免费观看| 狠狠色狠狠色综合系列| 欧美一区二区三区在线视频 | 激情成人午夜视频| www国产亚洲精品久久麻豆| 日本美女一区二区| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 日韩精品午夜视频| 欧美高清性hdvideosex| 日本不卡一区二区三区高清视频| 欧美揉bbbbb揉bbbbb| 日韩av电影天堂| 精品裸体舞一区二区三区| 国产在线精品不卡| 国产精品丝袜在线| 欧美视频一区二区三区| 天堂一区二区在线| 久久无码av三级| 99免费精品在线观看| 天堂蜜桃一区二区三区| 一区二区三区日韩精品视频| 7777精品伊人久久久大香线蕉完整版| 日韩精品三区四区| 国产三区在线成人av| 欧美日韩一区二区三区在线| 久久精品国产99国产| 亚洲欧洲日韩av| 欧美在线观看18| 国产成人免费视频网站| 午夜精品福利在线| 国产精品久久久久影视| 在线不卡免费av| 99re免费视频精品全部| 理论片日本一区| 亚洲综合久久av| 日韩一区在线看| 夜夜夜精品看看| 欧美—级在线免费片| 在线不卡中文字幕| 欧洲一区二区av| 97se亚洲国产综合自在线观| 国产乱子伦视频一区二区三区 | 色综合久久综合网欧美综合网 | 亚洲一区二区三区四区在线| 久久九九99视频| 欧美精品一区二区精品网| 欧美成人精品3d动漫h| 欧美亚洲动漫精品| 欧美三级日本三级少妇99| 懂色av一区二区三区蜜臀| 国产黄色91视频| 东方aⅴ免费观看久久av| 国产成人鲁色资源国产91色综| 久久精品国产亚洲一区二区三区| 日韩精彩视频在线观看| 三级在线观看一区二区| 人禽交欧美网站| 精品一区二区综合| 国产成人av电影在线| 精品国产三级电影在线观看| 欧美一区二区三区在线观看| 在线成人高清不卡| 精品免费视频一区二区| 国产日本亚洲高清| 亚洲精品视频观看| 三级精品在线观看| 国产一区二区三区高清播放| 国产精品影音先锋| 在线区一区二视频| 精品欧美黑人一区二区三区| 国产性色一区二区| 亚洲123区在线观看| 韩日av一区二区| 91高清在线观看| 国产午夜三级一区二区三| 国产精品久久久久aaaa樱花| 亚洲国产精品久久久久秋霞影院| 日韩成人一级片| 91免费国产视频网站| 精品国产伦一区二区三区观看体验 | 亚洲欧美日韩国产手机在线| 香港成人在线视频| 95精品视频在线| 精品国产一区二区三区不卡 | 欧美v日韩v国产v| 亚洲精品国产成人久久av盗摄 | 亚洲国产精品一区二区久久 | 日本韩国欧美一区| ww久久中文字幕| 久久成人综合网| 欧美猛男男办公室激情| 亚洲另类中文字| www.日韩在线| 中文字幕视频一区| 风间由美性色一区二区三区| 精品盗摄一区二区三区| youjizz久久| 中文字幕五月欧美| 99re亚洲国产精品| 国产精品美女一区二区三区| 国产一区在线精品| 日韩欧美中文一区二区| 日本色综合中文字幕| 欧美高清视频一二三区| 日韩激情av在线| 欧美成人a在线| 国产精品系列在线播放| 欧美高清一级片在线观看|