This commit corrects the output of the `properclean` make target. Instead
of just outputting `RM build/`, the currently configured build directory is
printed.
Signed-off-by: Simon Kuenzer <simon@unikraft.io>
Reviewed-by: Alexander Jung <alex@unikraft.io>
Approved-by: Razvan Deaconescu <razvand@unikraft.io>
Tested-by: Unikraft CI <monkey@unikraft.io>
GitHub-Closes: #1034
################################################################################
# Declare them before we depend on having .config
properclean:
- $(call verbose_cmd,RM,build/,$(RM) -r \
+ $(call verbose_cmd,RM,$(notdir $(BUILD_DIR)),$(RM) -r \
$(BUILD_DIR))
distclean: properclean