blob: 215bb77dc91e69b492fd1e7ec2369eca1cb9635e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# $NetBSD: Makefile,v 1.6 2014/08/25 10:25:53 apb Exp $
.include <bsd.own.mk>
LIB= Xcursor
.PATH: ${X11SRCDIR.${LIB}}/src
.PATH: ${X11SRCDIR.${LIB}}/include/X11/Xcursor
.PATH: ${X11SRCDIR.${LIB}}/man
SRCS= cursor.c display.c file.c library.c xlib.c
INCS= Xcursor.h
INCSDIR=${X11INCDIR}/X11/Xcursor
MAN= Xcursor.3
__XCURSORPATH__ = ~/.icons, /usr/share/icons, /usr/share/pixmaps, \
${X11LIBDIR}/icons
X11EXTRAMANDEFS+= -e s%__XCURSORPATH__%${__XCURSORPATH__:Q}%g
CPPFLAGS+= ${X11FLAGS.THREADLIB}
CPPFLAGS+= -DICONDIR=\"${X11LIBDIR}/icons\"
CPPFLAGS+= -I${DESTDIR}${X11INCDIR}/X11/Xcursor
CPPFLAGS+= -I${X11SRCDIR.${LIB}}/../include
LIBDPLIBS=\
Xrender ${.CURDIR}/../libXrender \
Xext ${.CURDIR}/../libXext \
X11 ${.CURDIR}/../libX11/dynamic
PKGDIST= ${LIB}
.include <bsd.x11.mk>
.include <bsd.lib.mk>
|