From 8d467b2099c77c3ea62d794b734ebfb0138d0b5c Mon Sep 17 00:00:00 2001 From: logicog Date: Fri, 9 Jan 2026 08:03:16 +0100 Subject: [PATCH] Remove unused uIP neighbour code --- Makefile | 2 +- uip/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e403d34..7d0ff1b 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ create_build_dir: SRCS = rtlplayground.c rtl837x_flash.c rtl837x_leds.c rtl837x_phy.c rtl837x_port.c cmd_parser.c html_data.c rtl837x_igmp.c \ rtl837x_stp.c rtl837x_pins.c dhcp.c machine.c cmd_editor.c rtl837x_bandwidth.c OBJS = ${SRCS:%.c=$(BUILDDIR)%.rel} -OBJS += uip/$(BUILDDIR)/timer.rel uip/$(BUILDDIR)/uip-fw.rel uip/$(BUILDDIR)/uip-neighbor.rel uip/$(BUILDDIR)/uip-split.rel uip/$(BUILDDIR)/uip.rel uip/$(BUILDDIR)/uip_arp.rel uip/$(BUILDDIR)/uiplib.rel httpd/$(BUILDDIR)/httpd.rel httpd/$(BUILDDIR)/page_impl.rel +OBJS += uip/$(BUILDDIR)/timer.rel uip/$(BUILDDIR)/uip-fw.rel uip/$(BUILDDIR)/uip-split.rel uip/$(BUILDDIR)/uip.rel uip/$(BUILDDIR)/uip_arp.rel uip/$(BUILDDIR)/uiplib.rel httpd/$(BUILDDIR)/httpd.rel httpd/$(BUILDDIR)/page_impl.rel html_data.c html_data.h: html tools tools/$(BUILDDIR)fileadder -a $(HTML_LOCATION) -s $(IMAGESIZE) -b BANK1 -d html -p html_data diff --git a/uip/Makefile b/uip/Makefile index d275a58..6082a25 100644 --- a/uip/Makefile +++ b/uip/Makefile @@ -5,7 +5,7 @@ AFLAGS= -plosgff BUILDDIR = output/ -SRCS = timer.c uip_arp.c uip.c uip-fw.c uiplib.c uip-neighbor.c uip-split.c +SRCS = timer.c uip_arp.c uip.c uip-fw.c uiplib.c uip-split.c OBJS = ${SRCS:%.c=$(BUILDDIR)%.rel} all: create_build_dir $(OBJS)