build_makefile

来自「针对于sa1100的bootloader。blob2.04是一个功能比较强大的b」· 代码 · 共 32 行

TXT
32
字号
# -*- makefile -*-## utils/build/build_Makefile: make all blob architectures with a single#   makefile## Copyright (C) 2001, Erik Mouw <J.A.K.Mouw@its.tudelft.nl>## $Id: build_Makefile,v 1.2 2001/08/29 21:08:51 erikm Exp $## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License version 2 as# published by the Free Software Foundation.#archs		= assabet brutus creditlart lart nesa pleb shannondebug-archs	= $(foreach a, $(archs), $(a)-debug)all-archs	= $(archs) $(debug-archs)all-archs-clean	= $(foreach a, $(all-archs), $(a)-clean).PHONY: all clean $(all-archs) $(all-archs-clean)all: $(all-archs)clean: $(all-archs-clean)$(all-archs):	$(MAKE) -C $@$(all-archs-clean):	$(MAKE) -C $(subst -clean,,$@) clean

⌨️ 快捷键说明

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