makefile

来自「U-boot latest tarball」· 代码 · 共 46 行

TXT
46
字号
## Copyright 2008 Extreme Engineering Solutions, Inc.# Copyright 2007 Freescale Semiconductor, Inc.# (C) Copyright 2001-2006# Wolfgang Denk, DENX Software Engineering, wd@denx.de.## See file CREDITS for list of people who contributed to this# project.## This program is free software; you can redistribute it and/or# modify it under the terms of the GNU General Public License as# published by the Free Software Foundation; either version 2 of# the License, or (at your option) any later version.#include $(TOPDIR)/config.mkLIB	= $(obj)lib$(BOARD).aCOBJS-y	+= $(BOARD).oCOBJS-y	+= ddr.oCOBJS-y	+= law.oCOBJS-y	+= tlb.oSRCS	:= $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)OBJS	:= $(addprefix $(obj),$(COBJS-y))SOBJS	:= $(addprefix $(obj),$(SOBJS-y))$(LIB):	$(obj).depend $(OBJS) $(SOBJS)	$(AR) $(ARFLAGS) $@ $(OBJS)clean:	rm -f $(OBJS) $(SOBJS)distclean:	clean	rm -f $(LIB) core *.bak .depend########################################################################## defines $(obj).depend targetinclude $(SRCTREE)/rules.mksinclude $(obj).depend#########################################################################

⌨️ 快捷键说明

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