7afaae9fe9
/etc/X11/app-defaults stays 1st in the libXt search path so, people and ports can put customized versions there if needed. If you didn't customize the versions in /etc/X11/app-defaults, they should be removed to avoid future issues when one file changes. discussed at g2k14 and ok ajacoutot@
28 lines
574 B
Makefile
28 lines
574 B
Makefile
# $OpenBSD: Makefile,v 1.13 2014/08/13 21:02:16 matthieu Exp $
|
|
.include <bsd.xconf.mk>
|
|
|
|
PROG= xsystrace
|
|
MAN= xsystrace.1
|
|
|
|
.ifmake install
|
|
SUBDIR= pixmaps
|
|
.endif
|
|
|
|
CPPFLAGS+= -I${X11BASE}/include
|
|
LDADD+= -L${X11BASE}/lib -lXaw -lXt -lSM -lICE -lXmu -lXpm -lX11 -lxcb -lXext -lXau -lXdmcp
|
|
|
|
SRCS= main.c interface.c callbacks.c policy.c
|
|
|
|
afterinstall:
|
|
${INSTALL_DATA} \
|
|
${.CURDIR}/Xsystrace.ad \
|
|
${DESTDIR}${X11BASE}/share/X11/app-defaults/Xsystrace
|
|
|
|
MANDIR= ${X11BASE}/man/man
|
|
|
|
obj: _xenocara_obj
|
|
|
|
.include <bsd.prog.mk>
|
|
.include <bsd.xorg.mk>
|
|
.include <bsd.subdir.mk>
|