From ee56e7908093173621e723433c6e42929fccc916 Mon Sep 17 00:00:00 2001 From: phl0 Date: Mon, 27 Jun 2016 13:34:27 +0200 Subject: [PATCH] Add definition of $(RM) --- src/makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/makefile b/src/makefile index bb0aab3..4c11c68 100644 --- a/src/makefile +++ b/src/makefile @@ -4,6 +4,7 @@ LDFLAGS=-std=c++11 -pthread SOURCES=$(wildcard *.cpp) OBJECTS=$(SOURCES:.cpp=.o) EXECUTABLE=xlxd +RM=rm -f all: $(SOURCES) $(EXECUTABLE)