blob: 4574c2fd24d80740974adfcfae4d965ff3146f1e (
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
|
# $NetBSD: Makefile,v 1.5 2003/09/30 06:41:31 lukem Exp $
NOMAN= 1
.include <bsd.own.mk>
HOSTPROG= pswrap
.PATH: ${X11SRCDIR.xc}/config/${HOSTPROG}
SRCS= main.c pswparser.y lexer.l pswdict.c pswfile.c \
systemnames.c psw.c pswstring.c pswsemantics.c
HOST_CPPFLAGS+= -DXENVIRONMENT -DFRIENDSFILE='"<DPS/dpsfriends.h>"' -I.
HOST_CPPFLAGS+= -I${X11SRCDIR.xc}/config/${HOSTPROG}
YHEADER= 1
pswpriv.h: pswparser.h
# Can't use -I${DESTDIR}${X11INCDIR} since pswrap is needed
# to create some header files.
#
BUILDSYMLINKS= ${X11SRCDIR.xc}/include X11
DPSRCS+= X11
.include <bsd.x11.mk>
.include <bsd.hostprog.mk>
|