eb02c0fb7a
reconfiguration events and change our sizes depending on that. We also detect the xinerama screens for maximize, vertmaximize and initial window placement. This could be improved by automatically resizing maximized windows when the screen resolution changes and by moving windows that would be hidden into visible space. Said changes will come shortly. Tested by many. matthieu@ didn't oppose.
25 lines
611 B
Makefile
25 lines
611 B
Makefile
# $OpenBSD: Makefile,v 1.12 2008/09/29 23:16:46 oga Exp $
|
|
|
|
.include <bsd.xconf.mk>
|
|
|
|
PROG= cwm
|
|
|
|
SRCS= calmwm.c screen.c xmalloc.c client.c grab.c menu.c \
|
|
search.c util.c xutil.c conf.c input.c xevents.c group.c \
|
|
kbfunc.c mousefunc.c font.c parse.y
|
|
|
|
CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 -I${.CURDIR}
|
|
|
|
LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lXau -lXdmcp -lXext \
|
|
-lfontconfig -lexpat -lfreetype -lz -lXinerama -lXrandr
|
|
|
|
MANDIR= ${X11BASE}/man/cat
|
|
MAN= cwm.1 cwmrc.5
|
|
|
|
CLEANFILES= cwm.cat1 cwmrc.cat5
|
|
|
|
obj: _xenocara_obj
|
|
|
|
.include <bsd.prog.mk>
|
|
.include <bsd.xorg.mk>
|