mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
This commit merges commonly-used header include paths to UBOOTINCLUDE and NOSTDINC_FLAGS variables, which are placed at the top Makefile. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
24 lines
541 B
Makefile
24 lines
541 B
Makefile
#
|
|
# (C) Copyright 2002-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
# Compile for a hosted environment on the target
|
|
HOST_EXTRACFLAGS = $(patsubst -I%,-idirafter%, $(UBOOTINCLUDE)) \
|
|
-idirafter $(SRCTREE)/tools/env \
|
|
-DUSE_HOSTCC \
|
|
-DTEXT_BASE=$(TEXT_BASE)
|
|
|
|
ifeq ($(MTD_VERSION),old)
|
|
HOST_EXTRACFLAGS += -DMTD_OLD
|
|
endif
|
|
|
|
hostprogs-y := fw_printenv
|
|
always := $(hostprogs-y)
|
|
|
|
fw_printenv-objs := fw_env.o fw_env_main.o \
|
|
crc32.o ctype.o linux_string.o \
|
|
env_attr.o env_flags.o
|