mirror of
https://github.com/Stichting-MINIX-Research-Foundation/xsrc.git
synced 2025-08-03 09:56:06 -04:00
124 lines
3.4 KiB
Makefile
124 lines
3.4 KiB
Makefile
# $NetBSD: Makefile,v 1.44 2005/03/18 15:56:09 tron Exp $
|
|
#
|
|
# Targets & Variables
|
|
#
|
|
# build: Clean out xsrc, and build and install everything that goes
|
|
# under /usr/X11R6.
|
|
#
|
|
# DESTDIR -- Set to an alternative directory to install under.
|
|
# UPDATE -- If set, don't make clean first, plus attempt to make
|
|
# only the targets that are out of date.
|
|
#
|
|
# release snapshot: Same as build, plus tar up the X sets and install
|
|
# them under the ${RELEASEDIR}/binary/sets directory (NetBSD <=1.6)
|
|
# or the ${RELEASEDIR}/${MACHINE}/binary/sets directory (NetBSD >1.6).
|
|
#
|
|
# DESTDIR -- Same as for build. Mandatory for building a release.
|
|
# RELEASEDIR -- As explained above.
|
|
# BUILD_DONE -- If set, assume build is already done.
|
|
# INSTALL_DONE -- If set, assume binaries to tar up are to be found
|
|
# in ${DESTDIR} already.
|
|
# NETBSDSRCDIR -- Set to the full path to the main source tree, /usr/src
|
|
# by default. Needed to find ./distrib/sets.
|
|
#
|
|
# cleandir distclean: Remove all generated files from under xsrc.
|
|
#
|
|
# clean: Remove object files, but keep imake generated makefiles.
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
# Backwards compatibility with NetBSD 1.5 and 1.5.x where NETBSDSRCDIR
|
|
# doesn't get defined by "bsd.own.mk".
|
|
NETBSDSRCDIR?= ${BSDSRCDIR}
|
|
|
|
XCDIR= xfree/xc
|
|
|
|
.MAIN: all
|
|
all: all-xc all-local
|
|
|
|
all-xc:
|
|
.if exists(${XCDIR}/xmakefile) && defined(UPDATE)
|
|
@cd ${XCDIR} && ${MAKE} Everything
|
|
.else
|
|
@-rm -f ${XCDIR}/xmakefile
|
|
@cd ${XCDIR} && ${MAKE} World
|
|
.endif
|
|
|
|
all-local:
|
|
@if [ ! -f local/Makefile ]; then \
|
|
cd local && PATH=../${XCDIR}/config/imake:$$PATH \
|
|
sh ../${XCDIR}/config/util/xmkmf -a ../${XCDIR} \
|
|
${.CURDIR}/local; \
|
|
fi
|
|
@cd local && ${MAKE}
|
|
|
|
install: install-xc install-local
|
|
|
|
install-xc:
|
|
@cd ${XCDIR} && \
|
|
${MAKE} DESTDIR="${DESTDIR}" install && \
|
|
${MAKE} DESTDIR="${DESTDIR}" install.man
|
|
|
|
install-local:
|
|
@cd local && \
|
|
${MAKE} DESTDIR="${DESTDIR}" install && \
|
|
${MAKE} DESTDIR="${DESTDIR}" install.man
|
|
|
|
clean:
|
|
@-cd ${XCDIR} && ${MAKE} clean
|
|
@-cd local && ${MAKE} clean
|
|
|
|
cleandir distclean: clean
|
|
find ${XCDIR} local -name .depend | xargs -n5 rm
|
|
find ${XCDIR} local -name 'Makefile*' | \
|
|
xargs -n5 grep -l "Makefile generated by imake" | xargs rm
|
|
-rmdir ${XCDIR}/exports
|
|
rm -f ${XCDIR}/xmakefile ${XCDIR}/config/cf/version.def \
|
|
${XCDIR}/config/cf/date.def
|
|
|
|
build:
|
|
.if defined(UPDATE)
|
|
@${MAKE} all && ${MAKE} install
|
|
.else
|
|
@${MAKE} cleandir && ${MAKE} all && ${MAKE} install
|
|
.endif
|
|
|
|
# release goo
|
|
#
|
|
.if !defined(DESTDIR)
|
|
release snapshot:
|
|
@echo setenv DESTDIR before doing that!
|
|
@false
|
|
.elif !defined(RELEASEDIR)
|
|
release snapshot:
|
|
@echo setenv RELEASEDIR before doing that!
|
|
@false
|
|
#
|
|
.else
|
|
#
|
|
.if defined(INSTALL_DONE)
|
|
release snapshot:
|
|
.elif defined(BUILD_DONE)
|
|
release snapshot: install
|
|
.else
|
|
release snapshot: build
|
|
#
|
|
.endif # INSTALL_DONE or BUILD_DONE
|
|
#
|
|
${INSTALL} -d -m 755 -o root -g wheel ${RELEASEDIR}/${MACHINE}/binary/sets
|
|
${INSTALL} -d -m 755 -o root -g wheel ${DESTDIR}/etc/mtree
|
|
.if defined(METALOG.add) && !exists(${DESTDIR}/etc/master.passwd)
|
|
cd ${NETBSDSRCDIR}/distrib/sets && \
|
|
sh ./maketars -x -d ${DESTDIR:S,^$,/,} -N ${NETBSDSRCDIR}/etc -t ${RELEASEDIR}/${MACHINE}/binary/sets
|
|
.else
|
|
cd ${NETBSDSRCDIR}/distrib/sets && \
|
|
sh ./maketars -x -d ${DESTDIR:S,^$,/,} -t ${RELEASEDIR}/${MACHINE}/binary/sets
|
|
.endif
|
|
cd ${RELEASEDIR}/${MACHINE}/binary/sets && \
|
|
cksum -o 1 *.tgz >BSDSUM && \
|
|
cksum *.tgz >CKSUM && \
|
|
cksum -m *.tgz >MD5 && \
|
|
cksum -o 2 *.tgz >SYSVSUM
|
|
#
|
|
.endif # DESTDIR and RELEASEDIR check
|