From 8401f01b75e727bf7541eb6253a2f72525256c8e Mon Sep 17 00:00:00 2001 From: Steve Karg Date: Sun, 18 Feb 2024 10:01:38 -0600 Subject: [PATCH] add a clean target in apps to remove stale library --- apps/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/Makefile b/apps/Makefile index 1b738d77..4f8f8160 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -250,6 +250,9 @@ lib: lib/Makefile Makefile $(BACNET_LIB_TARGET) $(BACNET_LIB_TARGET): $(MAKE) -B -C lib +clean: + $(MAKE) -C lib clean + .PHONY: gateway gateway: $(BACNET_LIB_TARGET) $(MAKE) -B -C $@