From 77c5f5ce181dbedf6bc7744b45051335844cd23b Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Tue, 30 Mar 2021 13:27:58 -0500 Subject: [PATCH] Fix typo in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4d58ea1..589178f 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ ifeq ($(OS), Windows_NT) BUILD_DATE=$(shell powershell Get-Date -Format "yyyy-MM-ddThh:mm:sszzz") else EXE=lume - EXE=rm -f + RM=rm -f BUILD_DATE=$(shell date --iso-8601=seconds) endif @@ -24,4 +24,4 @@ build: .PHONY: clean clean: - $(Q) $(RM) $(EXE) \ No newline at end of file + $(Q) $(RM) $(EXE)