Mercurial > gbwm
diff Makefile @ 8:0e5c535e379e default tip
Move cursor with focus
author | Atarwn Gard <a@qwa.su> |
---|---|
date | Mon, 13 Oct 2025 09:49:19 +0500 |
parents | 180e42b65105 |
children |
line wrap: on
line diff
--- a/Makefile Sun Oct 12 21:57:17 2025 +0500 +++ b/Makefile Mon Oct 13 09:49:19 2025 +0500 @@ -2,11 +2,11 @@ CC ?= cc HGVERSION = $(shell hg log -r . --template "{latesttag}-{latesttagdistance}-{node|short}" 2>/dev/null) VERSION = $(if $(HGVERSION),$(HGVERSION),dev) -CFLAGS ?= -O2 -Wall -DVERSION=\"$(VERSION)\" +CFLAGS ?= -O3 -std=c99 -Wall -DVERSION=\"$(VERSION)\" PREFIX ?= /usr/local $(TARGET): - $(CC) $(CFLAGS) gbwm.c -o $@ -lX11 -lXft -I/usr/include/freetype2/ + $(CC) $(CFLAGS) gbwm.c -o $@ -lX11 -lXft -I/usr/include/freetype2/ -lXtst config.h: default.config.h cp default.config.h config.h