blob: 38058f09c57b332f2ffaa0af212003fe75a90889 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:22 mrg Exp $
.include <bsd.own.mk>
PROG= pswrap
SRCS= main.c pswparser.y lexer.l pswdict.c pswfile.c \
systemnames.c psw.c pswstring.c pswsemantics.c
YHEADER=1
CPPFLAGS+= -DXENVIRONMENT \
-DFRIENDSFILE='"<DPS/dpsfriends.h>"' \
-I. \
-I${X11SRCDIR.xc}/config/pswrap
pswpriv.h: pswparser.h
.PATH: ${X11SRCDIR.xc}/config/pswrap
.include <bsd.x11.mk>
.include <bsd.prog.mk>
|