geomyidae

A small C-based gopherd. (gopher://bitreich.org/1/scm/geomyidae)
git clone git://r-36.net/geomyidae
Log | Files | Refs | README | LICENSE

commit 2b16b2e26bbc12ae4bf6d9637fadd5c93db1a4b9
parent 8b5fbe755e07ade7f689d6ecf2f7b6d39a5a800f
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
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:
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