mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
c3aa344e78
found in other places of the tree. Remove sticky and font commandline options and add another one for alternative config locations. Split off cwmrc(5) from cwm(1), nuke #ifdef __OpenBSD__ while there. tested by various kind people, feedback from oga@ and okan@ - thanks! ok oga@, jasper@, okan@
27 lines
566 B
Makefile
27 lines
566 B
Makefile
# $OpenBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
X11BASE?= /usr/X11R6
|
|
|
|
PROG= cwm
|
|
|
|
SRCS= calmwm.c screen.c xmalloc.c client.c grab.c search.c \
|
|
util.c xutil.c conf.c input.c xevents.c group.c \
|
|
kbfunc.c font.c parse.y
|
|
|
|
CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 -I${.CURDIR}
|
|
|
|
LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lXau -lXdmcp \
|
|
-lfontconfig -lexpat -lfreetype -lz -lX11 -lXau -lXdmcp -lXext
|
|
|
|
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>
|