From 8a545b99c810d8be1b09eb237a2c6d404e4f76ef Mon Sep 17 00:00:00 2001 From: phl0 Date: Wed, 23 Aug 2017 13:46:35 +0200 Subject: [PATCH] Make "make clean" also remove the binary --- README.md | 2 +- src/makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 57fdbb1..6b55755 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,8 @@ Please use the stable version listed above, we cannot support others. ``` # git clone https://github.com/LX3JL/xlxd.git # cd xlxd/src/ -# make # make clean +# make # make install ``` diff --git a/src/makefile b/src/makefile index bb0aab3..6ec8420 100644 --- a/src/makefile +++ b/src/makefile @@ -14,7 +14,7 @@ $(EXECUTABLE): $(OBJECTS) $(CC) $(CFLAGS) $< -o $@ clean: - $(RM) *.o + $(RM) xlxd *.o install: mkdir -p /xlxd