1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2024-12-23 01:55:49 -05:00

Add definition of $(RM)

This commit is contained in:
phl0 2016-06-27 13:34:27 +02:00
parent 505a9e296f
commit ee56e79080
No known key found for this signature in database
GPG Key ID: 48EA1E640798CA9A

View File

@ -4,6 +4,7 @@ LDFLAGS=-std=c++11 -pthread
SOURCES=$(wildcard *.cpp) SOURCES=$(wildcard *.cpp)
OBJECTS=$(SOURCES:.cpp=.o) OBJECTS=$(SOURCES:.cpp=.o)
EXECUTABLE=xlxd EXECUTABLE=xlxd
RM=rm -f
all: $(SOURCES) $(EXECUTABLE) all: $(SOURCES) $(EXECUTABLE)