diff options
author | B. Watson <urchlay@slackware.uk> | 2025-05-11 00:53:08 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-05-11 00:53:08 -0400 |
commit | 627a209c100d563de7b3da65e5037d647c6f2ede (patch) | |
tree | a877f58239056639cf4c6fe3e3ef170c273c9d37 /Makefile | |
parent | 010cedaaef3e1b2d465f52ed11394fbc3003ce50 (diff) | |
download | marsond-627a209c100d563de7b3da65e5037d647c6f2ede.tar.gz |
do not bind keys above 255, stops xinput from showing marsond as a pointer.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ realclean: clean # It specifically works on Slackware 15.0, if the system/musl package # from SlackBuilds.org is installed. static: clean - $(MAKE) CC=musl-gcc COPT="-static -nostdinc -isystem /usr/include/musl -isystem /usr/include -Wl,-s" + $(MAKE) CC=musl-gcc COPT="-Os -static -nostdinc -isystem /usr/include/musl -isystem /usr/include -Wl,-s" mv $(PROJ) $(PROJ).static install: all |