diff options
| author | Jerome Forissier <[email protected]> | 2025-06-25 15:19:12 +0200 |
|---|---|---|
| committer | Jerome Forissier <[email protected]> | 2025-07-08 11:07:37 +0200 |
| commit | ba814b8b5a74d1bc0cecd3f6031eecb025f28f15 (patch) | |
| tree | cd967a55ba33b9b709f94d4d07a68b849dd288e0 /cmd/Makefile | |
| parent | d63c4434bfa2727b1ecb8162ba49e8a7e69e24b2 (diff) | |
lwip: split cmd/net-lwip.c into one file per command
Move each command in cmd/net-lwip.c into its own file
(cmd/lwip/${cmd}.c).
Suggested-by: Heinrich Schuchardt <[email protected]>
Signed-off-by: Jerome Forissier <[email protected]>
Diffstat (limited to 'cmd/Makefile')
| -rw-r--r-- | cmd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 9c5bfc91659..34fa73d64fc 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -133,7 +133,7 @@ obj-$(CONFIG_CMD_NAND) += nand.o ifdef CONFIG_NET obj-$(CONFIG_CMD_NET) += net.o net-common.o else ifdef CONFIG_NET_LWIP -obj-$(CONFIG_CMD_NET) += net-lwip.o net-common.o +obj-$(CONFIG_CMD_NET) += net-common.o obj-y += lwip/ endif obj-$(CONFIG_ENV_SUPPORT) += nvedit.o |
