do not silence compiler flags

this creates warnings in Debian, as there are checks to see if we use proper hardening flags, for example.

besides, we *almost* show all the tags in the compile rule, might as well not silence it
reverse-branch
Antoine Beaupré 9 years ago
parent 516afbf9f9
commit a687384dc5
  1. 5
      Makefile

@ -19,9 +19,8 @@ endif
tty-clock : ${SRC}
@echo "build ${SRC}"
@echo "CC ${CFLAGS} ${LDFLAGS} ${SRC}"
@${CC} ${CFLAGS} ${SRC} -o ${BIN} ${LDFLAGS}
@echo "building ${SRC}"
${CC} ${CFLAGS} ${SRC} -o ${BIN} ${LDFLAGS}
install : ${BIN}

Loading…
Cancel
Save