[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / xenocara

Annotation of xenocara/Makefile, Revision 1.53

1.53    ! espie       1: # $OpenBSD: Makefile,v 1.52 2013/08/22 18:48:45 miod Exp $
1.1       matthieu    2: .include <bsd.own.mk>
1.45      matthieu    3: .include <bsd.xconf.mk>
1.1       matthieu    4:
1.11      matthieu    5: LOCALAPPD=/usr/local/lib/X11/app-defaults
                      6: LOCALAPPX=/usr/local/lib/X11
                      7: REALAPPD=/etc/X11/app-defaults
1.20      matthieu    8: XCONFIG=${XSRCDIR}/etc/X11.${MACHINE}/xorg.conf
1.15      todd        9: RM?=rm
1.11      matthieu   10:
1.51      todd       11: .if ${MACHINE_ARCH} != "vax"
1.23      matthieu   12: XSERVER= xserver
1.28      matthieu   13: .endif
                     14:
1.46      matthieu   15: .if defined(XENOCARA_BUILD_PIXMAN)
1.52      miod       16: .if ${XENOCARA_BUILD_PIXMAN:L} == "yes" && \
1.50      miod       17:     ${XENOCARA_HAVE_SHARED_LIBS:L} == "yes"
1.28      matthieu   18: XSERVER+= kdrive
1.46      matthieu   19: .endif
1.23      matthieu   20: .endif
                     21:
1.41      matthieu   22: SUBDIR= proto font/util data/bitmaps lib app data \
1.33      matthieu   23:        ${XSERVER} driver util doc
1.1       matthieu   24: .ifndef NOFONTS
                     25: SUBDIR+= font
                     26: .endif
1.18      todd       27: SUBDIR+= distrib/notes
1.1       matthieu   28:
1.10      matthieu   29: NOOBJ=
1.1       matthieu   30:
1.47      espie      31: build:
                     32:        exec ${SUDO} ${MAKE} bootstrap-root
                     33:        cd util/macros && exec ${MAKE} -f Makefile.bsd-wrapper
                     34:        exec ${SUDO} ${MAKE} beforebuild
                     35:        exec ${MAKE} realbuild
                     36:        exec ${SUDO} ${MAKE} afterbuild
                     37:
                     38: realbuild: _SUBDIRUSE
                     39:        # that's all folks
1.1       matthieu   40:
                     41: bootstrap:
1.47      espie      42:        exec ${SUDO} ${MAKE} bootstrap-root
                     43:
                     44: bootstrap-root:
                     45:        exec ${MAKE} distrib-dirs
                     46:        exec ${MAKE} install-mk
                     47:
                     48: beforeinstall beforebuild:
                     49:        cd util/macros && exec ${MAKE} -f Makefile.bsd-wrapper install
                     50:        exec ${MAKE} includes
                     51:
                     52: afterinstall afterbuild:
                     53:        exec ${MAKE} fix-appd
1.43      schwarze   54:        /usr/libexec/makewhatis -v ${DESTDIR}/usr/X11R6/man
1.3       matthieu   55:
1.14      matthieu   56: install-mk:
1.47      espie      57:        cd share/mk && exec ${MAKE} X11BASE=${X11BASE} install
1.10      matthieu   58:
1.11      matthieu   59: fix-appd:
                     60:        # Make sure /usr/local/lib/X11/app-defaults is a link
                     61:        if [ ! -L $(DESTDIR)${LOCALAPPD} ]; then \
                     62:            if [ -d $(DESTDIR)${LOCALAPPD} ]; then \
1.48      espie      63:                mv $(DESTDIR)${LOCALAPPD}/* $(DESTDIR)${REALAPPD} || true; \
1.11      matthieu   64:                rmdir $(DESTDIR)${LOCALAPPD}; \
                     65:            fi; \
                     66:            mkdir -p ${DESTDIR}${LOCALAPPX}; \
                     67:            ln -s ${REALAPPD} ${DESTDIR}${LOCALAPPD}; \
                     68:        fi
1.3       matthieu   69:
1.47      espie      70: font-cache:
                     71:        cd font/alias && exec ${MAKE} -f Makefile.bsd-wrapper afterinstall
                     72:
1.53    ! espie      73: .if ! ( defined(DESTDIR) && defined(RELEASEDIR) )
        !            74: release:
        !            75:        @echo You must set DESTDIR and RELEASEDIR for a release.; exit 255
        !            76: .else
1.47      espie      77: release: release-clean release-install dist
                     78: .ORDER: release-clean release-install dist
1.53    ! espie      79: .endif
1.3       matthieu   80:
                     81: release-clean:
                     82:        ${RM} -rf ${DESTDIR}/usr/X11R6/* ${DESTDIR}/usr/X11R6/.[a-zA-Z0-9]*
                     83:        ${RM} -rf ${DESTDIR}/var/cache/*
                     84:        ${RM} -rf ${DESTDIR}/etc/X11/*
                     85:        ${RM} -rf ${DESTDIR}/etc/fonts/*
                     86:        @if [ -d ${DESTDIR}/usr/X11R6 ] && [ "`cd ${DESTDIR}/usr/X11R6;ls`" ]; then \
                     87:                echo "Files found in ${DESTDIR}/usr/X11R6:"; \
                     88:                (cd ${DESTDIR}/usr/X11R6;/bin/pwd;ls -a); \
                     89:                echo "Cleanup before proceeding."; \
                     90:                exit 255; \
                     91:        fi
                     92:
                     93: release-install:
1.47      espie      94:        @exec ${SUDO} ${MAKE} bootstrap-root
                     95:        @exec ${MAKE} install
1.44      matthieu   96: .if ${MACHINE} == zaurus
1.3       matthieu   97:        @if [ -f $(DESTDIR)/etc/X11/xorg.conf ]; then \
                     98:         echo "Not overwriting existing" $(DESTDIR)/etc/X11/xorg.conf; \
                     99:        else set -x; \
                    100:         ${INSTALL} ${INSTALL_COPY} -o root -g wheel -m 644 \
                    101:                ${XCONFIG} ${DESTDIR}/etc/X11 ; \
                    102:        fi
                    103: .endif
1.34      ajacouto  104:        touch ${DESTDIR}/var/db/sysmerge/xetcsum
                    105:        TMPSUM=`mktemp /tmp/_xetcsum.XXXXXXXXXX` || exit 1; \
                    106:        sort distrib/sets/lists/xetc/{mi,md.${MACHINE}} > $${TMPSUM}; \
                    107:        cd ${DESTDIR} && \
                    108:                xargs cksum < $${TMPSUM} > ${DESTDIR}/var/db/sysmerge/xetcsum; \
                    109:        rm -f $${TMPSUM}
1.3       matthieu  110:
                    111: dist-rel:
                    112:        ${MAKE} RELEASEDIR=`pwd`/rel DESTDIR=`pwd`/dest dist 2>&1 | tee distlog
                    113:
                    114: dist:
                    115:        cd distrib/sets && \
                    116:                env MACHINE=${MACHINE} ksh ./maketars ${OSrev} ${OSREV} && \
1.47      espie     117:                { env MACHINE=${MACHINE} ksh ./checkflist ${OSREV} || true ; }
1.3       matthieu  118:
1.1       matthieu  119:
                    120: distrib-dirs:
1.25      matthieu  121: .if defined(DESTDIR) && ${DESTDIR} != ""
1.47      espie     122:        # running mtree under ${DESTDIR}
1.31      matthieu  123:        mtree -qdef /etc/mtree/BSD.x11.dist -p ${DESTDIR} -U
1.25      matthieu  124: .else
1.47      espie     125:        # running mtree
1.31      matthieu  126:        mtree -qdef /etc/mtree/BSD.x11.dist -p / -U
1.25      matthieu  127: .endif
                    128:
1.1       matthieu  129:
1.9       matthieu  130: .PHONY: all build beforeinstall install afterinstall release clean cleandir \
1.47      espie     131:        dist distrib-dirs fix-appd beforebuild bootstrap afterbuild realbuild \
                    132:        install-mk bootstrap-root
1.1       matthieu  133:
1.11      matthieu  134: .include <bsd.subdir.mk>
1.1       matthieu  135: .include <bsd.xorg.mk>