マウス対応の追加

This commit is contained in:
2026-05-03 19:10:35 +09:00
parent 7bd77a0da6
commit 07d377fbe8
5 changed files with 53 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ ARCH = powerpc
.endif
NAME = hexagon
VERSION = 1.0.0
VERSION = 1.2.0
PREFIX = /usr/local
.if ${OS} == "linux"
@@ -52,6 +52,10 @@ all:
${CC} -O3 ${CFLAGS} -o ${NAME} ${FILES} -std=c++17 -static ${LDFLAGS}
strip ${NAME}
debian:
${CC} -O3 ${CFLAGS} -o ${NAME} ${FILES} -std=c++17 -static ${LDFLAGS} -ltinfo
strip ${NAME}
debug:
${CC} -g ${CFLAGS} -o ${NAME} ${FILES} -std=c++17 ${LDFLAGS}