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

📄 makefile.am

📁 针对于sa1100的bootloader。blob2.04是一个功能比较强大的bootloader
💻 AM
字号:
# -*- makefile -*-############################################################################# Filename:      Makefile.am## Version:       $Id: Makefile.am,v 1.2 2001/08/06 22:44:52 erikm Exp $## Copyright:     Copyright (C) 1999, Erik Mouw## Author:        Erik Mouw <J.A.K.Mouw@its.tudelft.nl>## Description:   Makefile## Created at:    Tue Aug 17 17:25:56 1999## Modified by:   Erik Mouw <J.A.K.Mouw@its.tudelft.nl>## Modified at:   Tue Sep 28 23:33:26 1999###########################################################################bin_PROGRAMS	= \	blob-start-elf32 \	blob-start \	blob-rest-elf32 \	blob-rest \	blob# First specify how to build the first stage loader# WARNING: start.S *must* be the first file, otherwise the target will# be linked in the wrong order!blob_start_elf32_SOURCES	= \	start.S \	memsetup.S \	ledasm.S \	testmem.Sblob_start_elf32_LDFLAGS	+= \	-Wl,-T,${top_srcdir}/src/start-ld-scriptblob_start_elf32_LDADD	+= \	-lgccblob_start_SOURCES		=blob-start: blob-start-elf32	$(OBJCOPY) $(OCFLAGS) $< $@# Now specify how to build the second stage loaderblob_rest_elf32_SOURCES = \	trampoline.S \	flashasm.S \	testmem2.S \	clock.c \	command.c \	flash.c \	led.c \	linux.c \	main.c \	memory.c \	serial.c \	time.c \	util.c \	uucodec.cblob_rest_elf32_LDFLAGS	+= \	-Wl,-T,${top_srcdir}/src/rest-ld-scriptblob_rest_elf32_LDADD	+= \	-lgccblob_rest_SOURCES	=blob-rest: blob-rest-elf32	$(OBJCOPY) $(OCFLAGS) $< $@# Finally specify how to build the full binaryblob_SOURCES	=blob: blob-start blob-rest	rm -f $@	dd if=blob-start of=$@ bs=1k conv=sync	dd if=blob-rest of=$@ bs=1k seek=1	chmod +x blob# automake administrativiaEXTRA_DIST	= \	start-ld-script \	rest-ld-scriptINCLUDES		+= \	-I${top_builddir}/include \	-I${top_srcdir}/includeCLEANFILES	= *~DISTCLEANFILES	= .deps/*.P

⌨️ 快捷键说明

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