2002-12-17 01:51:00 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# (C) Copyright 2002-2006
|
2002-12-17 01:51:00 +00:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2002-12-17 01:51:00 +00:00
|
|
|
#
|
|
|
|
|
2014-02-04 08:24:45 +00:00
|
|
|
# fw_printenv is supposed to run on the target system, which means it should be
|
|
|
|
# built with cross tools. Although it may look weird, we only replace "HOSTCC"
|
|
|
|
# with "CC" here for the maximum code reuse of scripts/Makefile.host.
|
|
|
|
HOSTCC = $(CC)
|
|
|
|
|
2010-11-10 13:11:21 +00:00
|
|
|
# Compile for a hosted environment on the target
|
2014-02-04 08:24:20 +00:00
|
|
|
HOST_EXTRACFLAGS = $(patsubst -I%,-idirafter%, $(UBOOTINCLUDE)) \
|
2012-12-12 04:16:32 +00:00
|
|
|
-idirafter $(SRCTREE)/tools/env \
|
2012-10-03 09:38:46 +00:00
|
|
|
-DUSE_HOSTCC \
|
|
|
|
-DTEXT_BASE=$(TEXT_BASE)
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2007-11-27 09:23:20 +00:00
|
|
|
ifeq ($(MTD_VERSION),old)
|
2014-02-04 08:24:10 +00:00
|
|
|
HOST_EXTRACFLAGS += -DMTD_OLD
|
2007-11-27 09:23:20 +00:00
|
|
|
endif
|
|
|
|
|
2014-02-04 08:24:45 +00:00
|
|
|
always := fw_printenv
|
|
|
|
hostprogs-y := fw_printenv_unstripped
|
2002-12-17 01:51:00 +00:00
|
|
|
|
2014-02-04 08:24:45 +00:00
|
|
|
fw_printenv_unstripped-objs := fw_env.o fw_env_main.o \
|
2014-02-04 08:24:10 +00:00
|
|
|
crc32.o ctype.o linux_string.o \
|
|
|
|
env_attr.o env_flags.o
|
2014-02-04 08:24:45 +00:00
|
|
|
|
|
|
|
quiet_cmd_strip = STRIP $@
|
|
|
|
cmd_strip = $(STRIP) -o $@ $<
|
|
|
|
|
|
|
|
$(obj)/fw_printenv: $(obj)/fw_printenv_unstripped FORCE
|
|
|
|
$(call if_changed,strip)
|