wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2002-2006 |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 8 | include $(TOPDIR)/config.mk |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 9 | |
Andreas Bießmann | dca61f0 | 2011-10-17 22:11:12 +0000 | [diff] [blame] | 10 | HOSTSRCS := $(SRCTREE)/lib/crc32.c fw_env.c fw_env_main.c |
Joe Hershberger | 30fd4fad | 2012-12-11 22:16:32 -0600 | [diff] [blame] | 11 | HOSTSRCS += $(SRCTREE)/lib/ctype.c $(SRCTREE)/lib/linux_string.c |
| 12 | HOSTSRCS += $(SRCTREE)/common/env_attr.c $(SRCTREE)/common/env_flags.c |
Tom Rini | e3c52f2 | 2012-12-20 07:30:27 -0700 | [diff] [blame] | 13 | HEADERS := fw_env.h $(OBJTREE)/include/config.h |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 14 | |
Daniel Hobi | 02bd475 | 2010-11-10 14:11:21 +0100 | [diff] [blame] | 15 | # Compile for a hosted environment on the target |
| 16 | HOSTCPPFLAGS = -idirafter $(SRCTREE)/include \ |
Masahiro Yamada | bb02c53 | 2013-11-01 10:28:45 +0900 | [diff] [blame] | 17 | -idirafter $(SRCTREE)/arch/$(ARCH)/include \ |
Wolfgang Denk | 844f07d | 2010-11-27 23:30:56 +0100 | [diff] [blame] | 18 | -idirafter $(OBJTREE)/include \ |
Joe Hershberger | 30fd4fad | 2012-12-11 22:16:32 -0600 | [diff] [blame] | 19 | -idirafter $(SRCTREE)/tools/env \ |
Joe Hershberger | 497f205 | 2012-10-03 09:38:46 +0000 | [diff] [blame] | 20 | -DUSE_HOSTCC \ |
| 21 | -DTEXT_BASE=$(TEXT_BASE) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 22 | |
Markus Klotzbücher | 6de66b3 | 2007-11-27 10:23:20 +0100 | [diff] [blame] | 23 | ifeq ($(MTD_VERSION),old) |
Daniel Hobi | 02bd475 | 2010-11-10 14:11:21 +0100 | [diff] [blame] | 24 | HOSTCPPFLAGS += -DMTD_OLD |
Markus Klotzbücher | 6de66b3 | 2007-11-27 10:23:20 +0100 | [diff] [blame] | 25 | endif |
| 26 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 27 | all: $(obj)fw_printenv |
| 28 | |
Daniel Hobi | 02bd475 | 2010-11-10 14:11:21 +0100 | [diff] [blame] | 29 | # Some files complain if compiled with -pedantic, use HOSTCFLAGS_NOPED |
| 30 | $(obj)fw_printenv: $(HOSTSRCS) $(HEADERS) |
| 31 | $(HOSTCC) $(HOSTCFLAGS_NOPED) $(HOSTLDFLAGS) -o $@ $(HOSTSRCS) |
Loïc Minier | 3648ff2 | 2012-03-11 16:43:02 +0100 | [diff] [blame] | 32 | $(HOSTSTRIP) $@ |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 33 | |
| 34 | clean: |
Andreas Bießmann | dca61f0 | 2011-10-17 22:11:12 +0000 | [diff] [blame] | 35 | rm -f $(obj)fw_printenv |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 36 | |
| 37 | ######################################################################### |
| 38 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 39 | include $(TOPDIR)/rules.mk |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 40 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 41 | sinclude $(obj).depend |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 42 | |
| 43 | ######################################################################### |