From b8dc15f646061405f7f90740d6281d03e1bb5cd9 Mon Sep 17 00:00:00 2001 From: liuhaitao Date: Wed, 15 Apr 2020 16:14:07 +0800 Subject: [PATCH] examples/thttpd: align to elf/posix_spawn exmaples to fix depend build warning Build warning logs as below: arm-none-eabi-gcc: warning: ./hello/Makefile: linker input file unused because linking not done Signed-off-by: liuhaitao --- examples/thttpd/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/examples/thttpd/Makefile b/examples/thttpd/Makefile index 9ce0635ba..5609cd159 100644 --- a/examples/thttpd/Makefile +++ b/examples/thttpd/Makefile @@ -62,9 +62,6 @@ build: context:: +$(Q) $(CONTENT_MAKE) context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV) -depend:: - +$(Q) $(CONTENT_MAKE) depend TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV) - clean:: +$(Q) $(CONTENT_MAKE) clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)