zoukankan      html  css  js  c++  java
  • kernel makefile分析 之include路径分析

    arch/arm/Makefile

    # Machine directory name.  This list is sorted alphanumerically
    # by CONFIG_* macro name.

    machine-$(CONFIG_ARCH_AAEC2000)     := aaec2000
    machine-$(CONFIG_ARCH_AT91)     := at91
    ……

    machine-$(CONFIG_ARCH_S3C2410)      := s3c2410 s3c2400 s3c2412 s3c2440 s3c2442 s3c2443

    # Platform directory name.  This list is sorted alphanumerically
    # by CONFIG_* macro name.
    plat-$(CONFIG_ARCH_MXC)     := mxc
    plat-$(CONFIG_ARCH_OMAP)    := omap
    plat-$(CONFIG_PLAT_IOP)     := iop
    plat-$(CONFIG_PLAT_ORION)   := orion
    plat-$(CONFIG_PLAT_PXA)     := pxa
    plat-$(CONFIG_PLAT_S3C24XX) := s3c24xx s3c
    plat-$(CONFIG_PLAT_S3C64XX) := s3c64xx s3c
    plat-$(CONFIG_PLAT_S5PC1XX) := s5pc1xx s3c
    plat-$(CONFIG_ARCH_STMP3XXX)    := stmp3xxx

    machdirs := $(patsubst %,arch/arm/mach-%/,$(machine-y))
    platdirs := $(patsubst %,arch/arm/plat-%/,$(plat-y))

    ifeq ($(KBUILD_SRC),)
    KBUILD_CPPFLAGS += $(patsubst %,-I%include,$(machdirs) $(platdirs))

  • 相关阅读:
    WPF的本质:数据和行为
    WPF 布局
    wpf中的样式与模板
    WPF命令
    WPF数据转换
    WPF 深入研究 之 Control 控件
    WPF布局控件
    WPF TextBox 验证输入
    Razor引擎学习:RenderBody,RenderPage和RenderSection
    WPF控件模版
  • 原文地址:https://www.cnblogs.com/cute/p/1995390.html
Copyright © 2011-2022 走看看