From ff65bd53b56a3d1f0580fe672f85bdb584e69449 Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Tue, 11 Aug 2020 10:21:02 -0500 Subject: [PATCH] Makefile: Ensure built libs are removed in `clean` This commit ensures that `${LIBIFUPDOWN_LIB}` is removed when `make clean` is run. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index efed6db..98d4328 100644 --- a/Makefile +++ b/Makefile @@ -82,6 +82,7 @@ libifupdown.a: ${LIBIFUPDOWN_OBJ} clean: rm -f ${LIBIFUPDOWN_OBJ} ${CMD_OBJ} + rm -f ${LIBIFUPDOWN_LIB} rm -f ${CMDS} ${MULTICALL} rm -f ${MANPAGES}