build_makefile

来自「UBOOT源码,希望能给大家一点帮助,费了好大心思弄来的.」· 代码 · 共 35 行

TXT
35
字号
# -*- 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.8 2002/01/07 13:30:48 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 badge4 brutus creditlart h3600 idr\	jornada720 lart neponset nesa pleb shannon\	system3debug-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 + -
显示快捷键?