From 9f380f5ef24f75ae6ebbbc6069d074455f44876c Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 14 Jul 2020 16:05:58 +0200 Subject: [PATCH] build: makefile: use variables for clean rule --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b655642..f2ff5db 100644 --- a/Makefile +++ b/Makefile @@ -14,4 +14,6 @@ $(BUILD_DIR)/%.pdf: %.tex cv_common.tex twentysecondcv.cls .PHONY: clean clean: - $(RM) -r build cv_en.pdf + $(RM) -r \ + $(BUILD_DIR) \ + $(FILES) \