1
0
mirror of git://git.suckless.org/svkbd synced 2025-02-16 10:36:57 +00:00

removed debugging flag

This patch series is to be applied on top of the 24 I already sent and
addressed the feedback received thus-far.
This commit is contained in:
Maarten van Gompel 2021-03-27 17:57:26 +01:00 committed by Hiltjo Posthuma
parent 2fa04e74fe
commit 10024fc963

View File

@ -27,12 +27,12 @@ config.h:
svkbd.o: config.h layout.${LAYOUT}.h
.c.o:
${CC} -g ${SVKBD_CFLAGS} ${SVKBD_CPPFLAGS} -c $<
${CC} ${SVKBD_CFLAGS} ${SVKBD_CPPFLAGS} -c $<
${OBJ}: config.h config.mk
${BIN}: ${OBJ}
${CC} -g -o ${BIN} ${OBJ} ${SVKBD_LDFLAGS}
${CC} -o ${BIN} ${OBJ} ${SVKBD_LDFLAGS}
clean:
rm -f ${NAME}-?? ${NAME}-??.o ${OBJ} ${BIN}