Introduction
Introduction Statistics Contact Development Disclaimer Help
removed debugging flag - svkbd - simple virtual keyboard
git clone git://git.suckless.org/svkbd
Log
Files
Refs
README
LICENSE
---
commit 10024fc9637e4ae5f0fc55db95a079c05ce0d409
parent 2fa04e74fe304db479e3fb4c984c0868c725ab3c
Author: Maarten van Gompel <[email protected]>
Date: Sat, 27 Mar 2021 17:57:26 +0100
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.
Diffstat:
M Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/Makefile b/Makefile
@@ -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}
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.