Makefile: Ensure built libs are removed in clean

This commit ensures that `${LIBIFUPDOWN_LIB}` is removed when `make
clean` is run.
This commit is contained in:
A. Wilcox 2020-08-11 10:21:02 -05:00
parent b87a0df83d
commit ff65bd53b5
No known key found for this signature in database
GPG key ID: CB29CB51922B9D14

View file

@ -82,6 +82,7 @@ libifupdown.a: ${LIBIFUPDOWN_OBJ}
clean: clean:
rm -f ${LIBIFUPDOWN_OBJ} ${CMD_OBJ} rm -f ${LIBIFUPDOWN_OBJ} ${CMD_OBJ}
rm -f ${LIBIFUPDOWN_LIB}
rm -f ${CMDS} ${MULTICALL} rm -f ${CMDS} ${MULTICALL}
rm -f ${MANPAGES} rm -f ${MANPAGES}