diff options
author | Tom Rini <trini@konsulko.com> | 2017-02-09 11:56:35 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-02-09 11:56:35 -0500 |
commit | e1a71f8b339220fa74c9cd5d36ae9c444c492e83 (patch) | |
tree | 5eca7ff69f390f4c2f2df3459d3e2db3d91b7af9 /tools/Makefile | |
parent | 6f57b19857b514f6e94e423c9bbe2d4b8973a0db (diff) | |
parent | a5fd13ad1913d9c66c47666dbedac7703a48e502 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-net
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index cbccd4ab91a..5000f4d5bba 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -42,6 +42,10 @@ envcrc-objs := envcrc.o lib/crc32.o common/env_embedded.o lib/sha1.o hostprogs-$(CONFIG_CMD_NET) += gen_eth_addr HOSTCFLAGS_gen_eth_addr.o := -pedantic +hostprogs-$(CONFIG_CMD_NET) += gen_ethaddr_crc +gen_ethaddr_crc-objs := gen_ethaddr_crc.o lib/crc8.o +HOSTCFLAGS_gen_ethaddr_crc.o := -pedantic + hostprogs-$(CONFIG_CMD_LOADS) += img2srec HOSTCFLAGS_img2srec.o := -pedantic @@ -195,6 +199,7 @@ fdtgrep-objs += $(LIBFDT_OBJS) fdtgrep.o # that won't build on some weird host compiler -- though there are lots of # exceptions for files that aren't complaint. HOSTCFLAGS_crc32.o := -pedantic +HOSTCFLAGS_crc8.o := -pedantic HOSTCFLAGS_md5.o := -pedantic HOSTCFLAGS_sha1.o := -pedantic HOSTCFLAGS_sha256.o := -pedantic |