commit 10024fc9637e4ae5f0fc55db95a079c05ce0d409
Author:     Maarten van Gompel <[email protected]>
AuthorDate: Sat Mar 27 17:57:26 2021 +0100
Commit:     Hiltjo Posthuma <[email protected]>
CommitDate: Sun Mar 28 14:39:39 2021 +0200

    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.

diff --git a/Makefile b/Makefile
index 7890619..82057d3 100644
--- 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}

Reply via email to