blob: 4058fc7b1251519948c0292883ce2b94338f8ec6 (
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
|
# $OpenBSD: Makefile,v 1.4 2008/03/22 12:40:02 merdely Exp $
PROG= resize
MAN= resize.1
VPATH= ${.CURDIR}/..
CPPFLAGS+= -I${.CURDIR}/.. -I${X11BASE}/include \
-I${X11BASE}/include/freetype2 \
-DHAVE_CONFIG_H -DCSRG_BASED \
-DFUNCPROTO=15 -DNARROWPROTO -DXFREE86_FT2 -DUTMP
X11BASE?= /usr/X11R6
MANDIR= ${X11BASE}/man/cat
SRCS= resize.c xstrings.c
resize.1: resize.man
sed -e 's#__vendorversion__#"X Window System"#g' \
-e 's#__mansuffix__#1#g' \
-e 's#__miscmansuffix__#7#g' \
-e 's#__apploaddir__#${X11ETC}/app-defaults#g' \
< ${.CURDIR}/../resize.man > $@
CLEANFILES+= resize.1
obj: _xenocara_obj
.include <bsd.prog.mk>
.include <bsd.xorg.mk>
|