makefile.am

来自「学习blob的简单而有效的代码」· AM 代码 · 共 60 行

AM
60
字号
# -*- makefile -*-############################################################################# Filename:      Makefile.am## Version:       $Id: Makefile.am,v 1.10 1999/09/28 21:48:14 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-elf32 \	blob# WARNING: start.S *must* be the first file, otherwise the target will# be linked in the wrong order!blob_elf32_SOURCES	= \	start.S \	command.c \	main.c \	flash.c \	serial.c \	time.c \	util.c \	uucodec.cblob_SOURCES		=EXTRA_DIST		= \	ld-scriptblob_elf32_LDFLAGS	+= \	-Wl,-T,ld-scriptblob_elf32_LDADD	+= \	-lgccINCLUDES		+= \	-I${top_builddir}/include \	-I${top_srcdir}/includeblob: blob-elf32	$(OBJCOPY) $(OCFLAGS) $< $@CLEANFILES	= *~DISTCLEANFILES	= .deps/*.P

⌨️ 快捷键说明

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