Remove unused variables and change .c compilation rule

This commit is contained in:
Alex D. 2021-08-13 16:29:56 +00:00
parent bda181191f
commit b4ca942918
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
2 changed files with 2 additions and 6 deletions

View File

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

View File

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