mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
9a6a2d3cf3
* cope with new bsd.man.mk * update imake configuration ports use of imake remains unchanged
25 lines
539 B
Makefile
25 lines
539 B
Makefile
# $OpenBSD$
|
|
|
|
.include <bsd.xconf.mk>
|
|
|
|
PROG= cwm
|
|
|
|
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 font.c parse.y
|
|
|
|
CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 -I${.CURDIR}
|
|
|
|
CFLAGS+= -Wall
|
|
|
|
LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lxcb -lXau -lXdmcp \
|
|
-lfontconfig -lexpat -lfreetype -lz -lXinerama -lXrandr -lXext
|
|
|
|
MANDIR= ${X11BASE}/man/man
|
|
MAN= cwm.1 cwmrc.5
|
|
|
|
obj: _xenocara_obj
|
|
|
|
.include <bsd.prog.mk>
|
|
.include <bsd.xorg.mk>
|