blob: 8806cd93c4dddf23b749a9f20e8a5e67b8ac0055 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2009/03/27 07:24:02 matthieu Exp $
all: Makefile
$(MAKE)
Makefile:
if [ ${.OBJDIR} != ${.CURDIR} ]; then lndir ${.CURDIR}; fi
if [ -x $(X11BASE)/bin/xmkmf ]; then \
$(X11BASE)/bin/xmkmf ;\
fi
install:
$(MAKE) install.man
.include <bsd.xorg.mk>
|