summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMC <mc@hack.org>2010-06-20 16:44:07 +0200
committerMC <mc@hack.org>2010-06-20 16:44:07 +0200
commit5243fe16a16352a3be3c592e76e68c639bf6826e (patch)
tree110289a63f5343c3c4c2ca0cdeffd4177c6f803f /Makefile
parent0755d36ca3720fc91e24730bc420fc019627c5af (diff)
downloadmcwm-5243fe16a16352a3be3c592e76e68c639bf6826e.zip
- Read some ICCCM hints and use at least some of them.
- R now toggles stack order. - Resize in window defined steps if we have hints. - Move window to cursor position when mapping. Try to fit it on screen. - Focus on window under pointer when starting. - Keypress should deal with focused window, not the window where the key was pressed, which might be root. Sloppy focus, remember? - Never mind trying to run if we can't be the window manager.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 45577dc..d755aec 100644
--- a/Makefile
+++ b/Makefile
@@ -4,9 +4,7 @@ DISTFILES=LICENSE Makefile NEWS README TODO WISHLIST config.h mcwm.c
CC=gcc
CFLAGS=-g -std=c99 -Wall -I/usr/local/include -L/usr/local/lib -lxcb \
- -lxcb-keysyms
-
-# Define -DDEBUG for lots of debug information.
+ -lxcb-keysyms -lxcb-icccm -lxcb-atom -DDEBUG
RM=/bin/rm
@@ -17,7 +15,8 @@ all: $(TARGETS)
mcwm-static: mcwm.c config.h
$(CC) -o mcwm-static mcwm.c -static -g -std=c99 -Wall \
-I/usr/local/include/ -L/usr/local/lib \
- -lxcb -lxcb-keysyms -lXau -lXdmcp
+ -lxcb -lxcb-keysyms -lxcb-icccm -lxcb-atom -lxcb-property \
+ -lxcb-event -lXau -lXdmcp
$(DIST).tar.bz2:
mkdir $(DIST)