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

Annotation of xenocara/Makefile, Revision 1.77

1.77    ! tb          1: # $OpenBSD: Makefile,v 1.76 2016/11/19 08:56:27 tb 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.15      todd        8: RM?=rm
1.11      matthieu    9:
1.23      matthieu   10: XSERVER= xserver
                     11:
1.41      matthieu   12: SUBDIR= proto font/util data/bitmaps lib app data \
1.33      matthieu   13:        ${XSERVER} driver util doc
1.1       matthieu   14: .ifndef NOFONTS
                     15: SUBDIR+= font
                     16: .endif
1.18      todd       17: SUBDIR+= distrib/notes
1.1       matthieu   18:
1.10      matthieu   19: NOOBJ=
1.1       matthieu   20:
1.66      matthieu   21: .if defined(DESTDIR)
                     22: build:
                     23:        @echo "Cannot run ${MAKE} build with DESTDIR set"
                     24:        @exit 2
                     25: .else
1.77    ! tb         26: build:
        !            27:        umask ${WOBJUMASK}; exec ${MAKE} do-build
        !            28:
        !            29: do-build:
1.75      natano     30:        @if [[ `id -u` -ne 0 ]]; then \
                     31:                echo $@ must be called by root >&2; \
                     32:                false; \
                     33:        fi
                     34:        exec ${MAKE} bootstrap-root
                     35:        cd util/macros && \
                     36:            exec su ${BUILDUSER} -c 'exec ${MAKE} -f Makefile.bsd-wrapper'
                     37:        exec ${MAKE} beforebuild
1.47      espie      38:        exec ${MAKE} realbuild
1.75      natano     39:        exec ${MAKE} afterbuild
1.66      matthieu   40: .endif
1.47      espie      41:
                     42: realbuild: _SUBDIRUSE
                     43:        # that's all folks
1.1       matthieu   44:
                     45: bootstrap:
1.75      natano     46:        @if [[ `id -u` -ne 0 ]]; then \
                     47:                echo $@ must be called by root >&2; \
                     48:                false; \
                     49:        fi
                     50:        exec ${MAKE} bootstrap-root
1.47      espie      51:
                     52: bootstrap-root:
                     53:        exec ${MAKE} distrib-dirs
                     54:        exec ${MAKE} install-mk
                     55:
                     56: beforeinstall beforebuild:
                     57:        cd util/macros && exec ${MAKE} -f Makefile.bsd-wrapper install
                     58:
                     59: afterinstall afterbuild:
                     60:        exec ${MAKE} fix-appd
1.57      schwarze   61:        /usr/sbin/makewhatis -Qv ${DESTDIR}/usr/X11R6/man
1.73      tb         62:        chown root:wheel ${DESTDIR}/usr/X11R6/man/mandoc.db
1.76      tb         63:        chmod 644 ${DESTDIR}/usr/X11R6/man/mandoc.db
1.68      ajacouto   64:        touch ${DESTDIR}/var/sysmerge/xetcsum
1.63      ajacouto   65:        cd ${DESTDIR}/ && \
                     66:                sort ${.CURDIR}/distrib/sets/lists/xetc/{mi,md.${MACHINE}} | \
1.68      ajacouto   67:                xargs sha256 -h ${DESTDIR}/var/sysmerge/xetcsum || true
1.73      tb         68:        chown root:wheel ${DESTDIR}/var/sysmerge/xetcsum
1.76      tb         69:        chmod 644 ${DESTDIR}/var/sysmerge/xetcsum
1.58      espie      70:        cd distrib/sets && exec ${MAKE}
1.3       matthieu   71:
1.14      matthieu   72: install-mk:
1.47      espie      73:        cd share/mk && exec ${MAKE} X11BASE=${X11BASE} install
1.10      matthieu   74:
1.11      matthieu   75: fix-appd:
                     76:        # Make sure /usr/local/lib/X11/app-defaults is a link
                     77:        if [ ! -L $(DESTDIR)${LOCALAPPD} ]; then \
                     78:            if [ -d $(DESTDIR)${LOCALAPPD} ]; then \
1.48      espie      79:                mv $(DESTDIR)${LOCALAPPD}/* $(DESTDIR)${REALAPPD} || true; \
1.11      matthieu   80:                rmdir $(DESTDIR)${LOCALAPPD}; \
                     81:            fi; \
                     82:            mkdir -p ${DESTDIR}${LOCALAPPX}; \
                     83:            ln -s ${REALAPPD} ${DESTDIR}${LOCALAPPD}; \
1.73      tb         84:            chown -h root:wheel ${DESTDIR}${LOCALAPPD}; \
1.11      matthieu   85:        fi
1.3       matthieu   86:
1.47      espie      87: font-cache:
                     88:        cd font/alias && exec ${MAKE} -f Makefile.bsd-wrapper afterinstall
                     89:
1.53      espie      90: .if ! ( defined(DESTDIR) && defined(RELEASEDIR) )
                     91: release:
                     92:        @echo You must set DESTDIR and RELEASEDIR for a release.; exit 255
                     93: .else
1.55      todd       94: release: sha
                     95:
                     96: sha: release-clean release-install dist hash
                     97:
                     98: hash: dist
                     99:        -cd ${RELEASEDIR}; \
1.56      sthen     100:                cksum -a sha256 x*tgz > SHA256
1.55      todd      101:
                    102: .ORDER: release-clean release-install dist hash
1.53      espie     103: .endif
1.3       matthieu  104:
                    105: release-clean:
                    106:        ${RM} -rf ${DESTDIR}/usr/X11R6/* ${DESTDIR}/usr/X11R6/.[a-zA-Z0-9]*
                    107:        ${RM} -rf ${DESTDIR}/var/cache/*
                    108:        ${RM} -rf ${DESTDIR}/etc/X11/*
                    109:        ${RM} -rf ${DESTDIR}/etc/fonts/*
                    110:        @if [ -d ${DESTDIR}/usr/X11R6 ] && [ "`cd ${DESTDIR}/usr/X11R6;ls`" ]; then \
                    111:                echo "Files found in ${DESTDIR}/usr/X11R6:"; \
                    112:                (cd ${DESTDIR}/usr/X11R6;/bin/pwd;ls -a); \
                    113:                echo "Cleanup before proceeding."; \
                    114:                exit 255; \
                    115:        fi
                    116:
                    117: release-install:
1.59      matthieu  118:        @exec ${MAKE} bootstrap-root
1.61      matthieu  119:        @exec ${MAKE} install
1.3       matthieu  120:
                    121: dist-rel:
                    122:        ${MAKE} RELEASEDIR=`pwd`/rel DESTDIR=`pwd`/dest dist 2>&1 | tee distlog
                    123:
                    124: dist:
                    125:        cd distrib/sets && \
1.67      deraadt   126:                env MACHINE=${MACHINE} ksh ./maketars ${OSrev} ${OSREV}
1.3       matthieu  127:
1.64      deraadt   128: checkdist:
1.65      deraadt   129:        @cd distrib/sets && \
1.64      deraadt   130:                { env MACHINE=${MACHINE} ksh ./checkflist ${OSREV} || true ; }
1.1       matthieu  131:
                    132: distrib-dirs:
1.25      matthieu  133: .if defined(DESTDIR) && ${DESTDIR} != ""
1.47      espie     134:        # running mtree under ${DESTDIR}
1.31      matthieu  135:        mtree -qdef /etc/mtree/BSD.x11.dist -p ${DESTDIR} -U
1.25      matthieu  136: .else
1.47      espie     137:        # running mtree
1.31      matthieu  138:        mtree -qdef /etc/mtree/BSD.x11.dist -p / -U
1.25      matthieu  139: .endif
                    140:
1.1       matthieu  141:
1.9       matthieu  142: .PHONY: all build beforeinstall install afterinstall release clean cleandir \
1.47      espie     143:        dist distrib-dirs fix-appd beforebuild bootstrap afterbuild realbuild \
                    144:        install-mk bootstrap-root
1.1       matthieu  145:
1.11      matthieu  146: .include <bsd.subdir.mk>
1.1       matthieu  147: .include <bsd.xorg.mk>