diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 10:58:45 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-26 10:58:45 +0000 |
commit | ddd650147fb204ab295c398966127129da577908 (patch) | |
tree | 8e7855f0d79470c9621286b73a9c8e28c3cf1d0d /app/xsystrace/Makefile | |
parent | 24036b4111a1ec2f391e0f6d177c2bc1be92c515 (diff) |
Importing from XF4, plus BSD make infrastructure
Diffstat (limited to 'app/xsystrace/Makefile')
-rw-r--r-- | app/xsystrace/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/xsystrace/Makefile b/app/xsystrace/Makefile new file mode 100644 index 000000000..e28a348e5 --- /dev/null +++ b/app/xsystrace/Makefile @@ -0,0 +1,18 @@ +# $OpenBSD: Makefile,v 1.1 2006/11/26 10:58:43 matthieu Exp $ + +PROG= xsystrace +MAN= xsystrace.1 + +CPPFLAGS+= -I${X11BASE}/include +LDADD+= -L${X11BASE}/lib -lXaw -lXt -lXmu -lX11 -lXext + +SRCS= main.c interface.c callbacks.c policy.c + +beforeinstall: + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \ + ${.CURDIR}/Xsystrace.ad ${PREFIX}/${LIBDIR}/X11/app-defaults + +.include <bsd.prog.mk> +.include <bsd.xorg.mk> + + |