openbsd-xenocara/Makefile

144 lines
3.7 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.55 2014/01/10 00:17:54 todd Exp $
2006-11-26 17:00:56 +03:00
.include <bsd.own.mk>
.include <bsd.xconf.mk>
2006-11-26 17:00:56 +03:00
LOCALAPPD=/usr/local/lib/X11/app-defaults
LOCALAPPX=/usr/local/lib/X11
REALAPPD=/etc/X11/app-defaults
XCONFIG=${XSRCDIR}/etc/X11.${MACHINE}/xorg.conf
RM?=rm
.if ${MACHINE_ARCH} != "vax"
XSERVER= xserver
.endif
2012-04-02 03:00:24 +04:00
.if defined(XENOCARA_BUILD_PIXMAN)
.if ${XENOCARA_BUILD_PIXMAN:L} == "yes" && \
${XENOCARA_BUILD_GL:L} == "yes" && \
${XENOCARA_HAVE_SHARED_LIBS:L} == "yes"
XSERVER+= kdrive
.endif
2012-04-02 03:00:24 +04:00
.endif
SUBDIR= proto font/util data/bitmaps lib app data \
${XSERVER} driver util doc
2006-11-26 17:00:56 +03:00
.ifndef NOFONTS
SUBDIR+= font
.endif
SUBDIR+= distrib/notes
2006-11-26 17:00:56 +03:00
2006-12-18 01:47:35 +03:00
NOOBJ=
2006-11-26 17:00:56 +03:00
build:
exec ${SUDO} ${MAKE} bootstrap-root
cd util/macros && exec ${MAKE} -f Makefile.bsd-wrapper
exec ${SUDO} ${MAKE} beforebuild
exec ${MAKE} realbuild
exec ${SUDO} ${MAKE} afterbuild
realbuild: _SUBDIRUSE
# that's all folks
2006-11-26 17:00:56 +03:00
bootstrap:
exec ${SUDO} ${MAKE} bootstrap-root
2006-11-30 00:52:18 +03:00
bootstrap-root:
exec ${MAKE} distrib-dirs
exec ${MAKE} install-mk
2006-11-30 00:52:18 +03:00
beforeinstall beforebuild:
cd util/macros && exec ${MAKE} -f Makefile.bsd-wrapper install
exec ${MAKE} includes
afterinstall afterbuild:
exec ${MAKE} fix-appd
/usr/libexec/makewhatis -v ${DESTDIR}/usr/X11R6/man
install-mk:
cd share/mk && exec ${MAKE} X11BASE=${X11BASE} install
fix-appd:
# Make sure /usr/local/lib/X11/app-defaults is a link
if [ ! -L $(DESTDIR)${LOCALAPPD} ]; then \
if [ -d $(DESTDIR)${LOCALAPPD} ]; then \
mv $(DESTDIR)${LOCALAPPD}/* $(DESTDIR)${REALAPPD} || true; \
rmdir $(DESTDIR)${LOCALAPPD}; \
fi; \
mkdir -p ${DESTDIR}${LOCALAPPX}; \
ln -s ${REALAPPD} ${DESTDIR}${LOCALAPPD}; \
fi
2006-12-18 01:47:35 +03:00
font-cache:
cd font/alias && exec ${MAKE} -f Makefile.bsd-wrapper afterinstall
.if ! ( defined(DESTDIR) && defined(RELEASEDIR) )
release:
@echo You must set DESTDIR and RELEASEDIR for a release.; exit 255
.else
release: sha
sha: release-clean release-install dist hash
hash: dist
-cd ${RELEASEDIR}; \
sum -a sha256 x*tgz > SHA256
.ORDER: release-clean release-install dist hash
.endif
2006-11-30 00:52:18 +03:00
release-clean:
${RM} -rf ${DESTDIR}/usr/X11R6/* ${DESTDIR}/usr/X11R6/.[a-zA-Z0-9]*
${RM} -rf ${DESTDIR}/var/cache/*
${RM} -rf ${DESTDIR}/etc/X11/*
${RM} -rf ${DESTDIR}/etc/fonts/*
@if [ -d ${DESTDIR}/usr/X11R6 ] && [ "`cd ${DESTDIR}/usr/X11R6;ls`" ]; then \
echo "Files found in ${DESTDIR}/usr/X11R6:"; \
(cd ${DESTDIR}/usr/X11R6;/bin/pwd;ls -a); \
echo "Cleanup before proceeding."; \
exit 255; \
fi
release-install:
@exec ${SUDO} ${MAKE} bootstrap-root
@exec ${MAKE} install
.if ${MACHINE} == zaurus
2006-11-30 00:52:18 +03:00
@if [ -f $(DESTDIR)/etc/X11/xorg.conf ]; then \
echo "Not overwriting existing" $(DESTDIR)/etc/X11/xorg.conf; \
else set -x; \
${INSTALL} ${INSTALL_COPY} -o root -g wheel -m 644 \
${XCONFIG} ${DESTDIR}/etc/X11 ; \
fi
.endif
touch ${DESTDIR}/var/db/sysmerge/xetcsum
TMPSUM=`mktemp /tmp/_xetcsum.XXXXXXXXXX` || exit 1; \
sort distrib/sets/lists/xetc/{mi,md.${MACHINE}} > $${TMPSUM}; \
cd ${DESTDIR} && \
xargs cksum < $${TMPSUM} > ${DESTDIR}/var/db/sysmerge/xetcsum; \
rm -f $${TMPSUM}
2006-11-30 00:52:18 +03:00
dist-rel:
${MAKE} RELEASEDIR=`pwd`/rel DESTDIR=`pwd`/dest dist 2>&1 | tee distlog
dist:
cd distrib/sets && \
env MACHINE=${MACHINE} ksh ./maketars ${OSrev} ${OSREV} && \
{ env MACHINE=${MACHINE} ksh ./checkflist ${OSREV} || true ; }
2006-11-30 00:52:18 +03:00
2006-11-26 17:00:56 +03:00
distrib-dirs:
.if defined(DESTDIR) && ${DESTDIR} != ""
# running mtree under ${DESTDIR}
mtree -qdef /etc/mtree/BSD.x11.dist -p ${DESTDIR} -U
.else
# running mtree
mtree -qdef /etc/mtree/BSD.x11.dist -p / -U
.endif
2006-11-26 17:00:56 +03:00
.PHONY: all build beforeinstall install afterinstall release clean cleandir \
dist distrib-dirs fix-appd beforebuild bootstrap afterbuild realbuild \
install-mk bootstrap-root
2006-11-26 17:00:56 +03:00
.include <bsd.subdir.mk>
2006-11-26 17:00:56 +03:00
.include <bsd.xorg.mk>