Makefile: fix make clean and remove some trailing spaces - geomyidae - A small C-based gopherd.
git clone git://bitreich.org/geomyidae/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/geomyidae/
Log
Files
Refs
Tags
README
LICENSE
---
commit 2b16b2e26bbc12ae4bf6d9637fadd5c93db1a4b9
parent 8b5fbe755e07ade7f689d6ecf2f7b6d39a5a800f
Author: Hiltjo Posthuma 
Date:   Mon, 10 Jul 2017 18:22:31 +0200

Makefile: fix make clean and remove some trailing spaces

Signed-off-by: Christoph Lohmann <20h@r-36.net>

Diffstat:
  M Makefile                            |       6 +++---

1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/Makefile b/Makefile
@@ -7,11 +7,11 @@ PREFIX ?= /usr
 BINDIR ?= $(PREFIX)/bin
 MANDIR ?= $(PREFIX)/share/man/man8
 
-CFLAGS += -O2 -Wall -I. -I/usr/include 
+CFLAGS += -O2 -Wall -I. -I/usr/include
 LDFLAGS += -L/usr/lib -L. -lc
 CC = cc
 
-SRC = main.c ind.c handlr.c 
+SRC = main.c ind.c handlr.c
 OBJ = ${SRC:.c=.o}
 
 all: options $(NAME)
@@ -34,7 +34,7 @@ ${NAME}: ${OBJ}
 
 clean:
         @echo cleaning
-        @rm -f ${NAME} ${OBJ} ${NAME}-${VERSIOn}.tar.gz 
+        @rm -f ${NAME} ${OBJ} ${NAME}-${VERSION}.tar.gz
 
 install: all
         @echo installing executable to ${DESTDIR}${PREFIX}/bin