Skip to content

Commit 312ca8e

Browse files
committed
Tiny nit - fix dependencies
1 parent e1ccdc0 commit 312ca8e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

mongoose.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17217,7 +17217,6 @@ static bool mg_tcpip_driver_xmc_up(struct mg_tcpip_if *ifp) {
1721717217
MG_DEBUG(("Link is %uM %s-duplex", speed == MG_PHY_SPEED_10M ? 10 : 100,
1721817218
full_duplex ? "full" : "half"));
1721917219
}
17220-
(void) d;
1722117220
return up;
1722217221
}
1722317222

test/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ install: linux-libs
190190
uninstall:
191191
rm -rf $(DESTDIR)$(LIBDIR)/libmongoose.a $(DESTDIR)$(LIBDIR)/libmongoose.so.$(VERSION) $(DESTDIR)$(INCLUDEDIR)/mongoose.h $(DESTDIR)$(LIBDIR)/libmongoose.so
192192

193-
mongoose.c: Makefile $(wildcard src/*.c) $(wildcard src/drivers/*.c)
193+
mongoose.c: Makefile $(wildcard ../src/*.c) $(wildcard ../src/drivers/*.c)
194194
cd .. && (export LC_ALL=C ; cat src/license.h; echo; echo '#include "mongoose.h"' ; (for F in src/*.c src/drivers/*.c ; do echo; echo '#ifdef MG_ENABLE_LINES'; echo "#line 1 \"$$F\""; echo '#endif'; cat $$F | sed -e 's,#include ".*,,'; done))> $@
195195

196196
mongoose.h: $(HDRS) Makefile

0 commit comments

Comments
 (0)