summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-07-27 15:06:38 +0200
committerLeah Neukirchen <leah@vuxu.org>2017-07-27 15:07:12 +0200
commit5a46349ec798912f2b5329cc1dbc04ec8595038a (patch)
tree7ca4224cace2f55cbb1df94f65bf0e1ac2a9c40d /Makefile
parent8908e5ec42aad92ff0c06598274b754c9b954b03 (diff)
parent8dee1182a2a65a0286c68310f6f5181560f6275a (diff)
downloadcwm-5a46349ec798912f2b5329cc1dbc04ec8595038a.tar.gz
cwm-5a46349ec798912f2b5329cc1dbc04ec8595038a.tar.xz
cwm-5a46349ec798912f2b5329cc1dbc04ec8595038a.zip
cvsimport
* refs/heads/master:
  Use the key names from keysymdef.h in the default key bindings list for clarification.
  remove extra parentheses
  Pull over the remaining re-implemented window move/resize functions and create a wrapper so that the key and mouse based move/resize callbacks can be unified. This has already been done with other window operations and menus.
  rename one function, matching others, to help upcoming change
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 441b91d..6909c9b 100644
--- a/Makefile
+++ b/Makefile
@@ -7,11 +7,11 @@ PREFIX?=	/usr/local
 
 SRCS=		calmwm.c screen.c xmalloc.c client.c menu.c \
 		search.c util.c xutil.c conf.c xevents.c group.c \
-		kbfunc.c mousefunc.c parse.y
+		kbfunc.c parse.y
 
 OBJS=		calmwm.o screen.o xmalloc.o client.o menu.o \
 		search.o util.o xutil.o conf.o xevents.o group.o \
-		kbfunc.o mousefunc.o strlcpy.o strlcat.o y.tab.o \
+		kbfunc.o strlcpy.o strlcat.o y.tab.o \
 		strtonum.o reallocarray.o
 
 CPPFLAGS+=	`pkg-config --cflags fontconfig x11 xft xrandr`