From 3ba0366faf94c1a65f1c16a72d5c9c1149732a9c Mon Sep 17 00:00:00 2001 From: merakor Date: Fri, 4 Sep 2020 09:41:08 +0000 Subject: Makefile: fix cpt-stat FossilOrigin-Name: eefdf48dba2056c2a60d76210677fc87da4e4f6e17c5e56ba1fcd88bb1880933 --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4ae4647..e1fab61 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,8 @@ BIN = ${SRC:.c=} all: ${BIN} -.c.o: - ${CC} ${CFLAGS} -c -o $@ $< - -${BIN}: ${OBJ} - ${CC} ${LDFLAGS} -o $@ $< ${LIBS} +.c: + ${CC} ${CFLAGS} ${LDFLAGS} -o $@ $< ${LIBS} clean: rm -f ${BIN} ${OBJ} -- cgit v1.2.3