Remove unused variables and change .c compilation rule

This commit is contained in:
Alex D. 2021-08-13 16:34:45 +00:00
parent 7a0b6218c7
commit 4ff817029b
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
2 changed files with 3 additions and 7 deletions

View File

@ -40,8 +40,8 @@ OBJ = ${SRC:.c=.o}
all: ${OBJ}
.c.o:
${CC} -c ${CFLAGS} $<
%.o: %.c
${CC} -c ${CFLAGS} -o $@ $<
clean:
rm -f ${OBJ}

View File

@ -1,7 +1,3 @@
VERSION = 1.1
VERSION = 1.1.1
PREFIX = /usr/local
CC = clang
AR = llvm-ar
RANLIB = llvm-ranlib