2002-01-01 10:59:32 +03:00
|
|
|
# $NetBSD: Makefile,v 1.4 2002/01/01 07:59:32 mrg Exp $
|
2000-03-28 04:38:06 +04:00
|
|
|
|
|
|
|
# The `all' target must appear before bsd.own.mk is pulled in.
|
|
|
|
all:
|
|
|
|
@echo "Please understand what you are doing, first."
|
|
|
|
@false
|
|
|
|
|
|
|
|
#
|
|
|
|
# DETERMINE WHICH CRYPTO SET TO USE
|
|
|
|
#
|
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
|
|
#
|
|
|
|
# UTILITY TARGETS
|
|
|
|
#
|
|
|
|
|
|
|
|
check_destdir: .PHONY
|
|
|
|
.if !defined(DESTDIR)
|
|
|
|
@echo "DESTDIR must be set"
|
|
|
|
@false
|
|
|
|
.else
|
|
|
|
@true
|
|
|
|
.endif
|
|
|
|
|
|
|
|
check_releasedir: .PHONY
|
|
|
|
.if !defined(RELEASEDIR)
|
|
|
|
@echo "RELEASEDIR must be set"
|
|
|
|
@false
|
|
|
|
.else
|
|
|
|
@true
|
|
|
|
.endif
|
|
|
|
|
2001-11-24 05:54:50 +03:00
|
|
|
print_machine: .PHONY
|
|
|
|
@echo ${MACHINE}
|
|
|
|
|
|
|
|
print_machine_arch: .PHONY
|
|
|
|
@echo ${MACHINE_ARCH}
|
|
|
|
|
|
|
|
print_machine_cpu: .PHONY
|
|
|
|
@echo ${MACHINE_CPU}
|
|
|
|
|
|
|
|
print_object_fmt: .PHONY
|
|
|
|
@echo ${OBJECT_FMT}
|
|
|
|
|
|
|
|
print_use_new_toolchain: .PHONY
|
|
|
|
@echo "${USE_NEW_TOOLCHAIN:Dyes}"
|
|
|
|
|
|
|
|
# This target has debugging value only, really.
|
|
|
|
makeflist: .PHONY check_destdir
|
|
|
|
DESTDIR=${DESTDIR} MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \
|
|
|
|
MAKE=${MAKE} sh ${.CURDIR}/makeflist
|
|
|
|
|
2000-03-28 04:38:06 +04:00
|
|
|
#
|
|
|
|
# SET BUILDING TARGETS
|
|
|
|
#
|
|
|
|
|
|
|
|
.PRECIOUS: checkflist
|
|
|
|
checkflist: check_destdir
|
2001-11-24 05:54:50 +03:00
|
|
|
DESTDIR=${DESTDIR} MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \
|
|
|
|
MAKE=${MAKE} sh ${.CURDIR}/checkflist
|
2000-03-28 04:38:06 +04:00
|
|
|
|
2002-01-01 10:59:32 +03:00
|
|
|
.PRECIOUS: checkflist
|
|
|
|
checkflist-x11: check_destdir
|
|
|
|
DESTDIR=${DESTDIR} MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \
|
|
|
|
MAKE=${MAKE} sh ${.CURDIR}/checkflist -x11
|
|
|
|
|
2000-03-28 04:38:06 +04:00
|
|
|
.PRECIOUS: maketars
|
2000-06-20 10:00:24 +04:00
|
|
|
maketars: check_destdir check_releasedir
|
|
|
|
sh ${.CURDIR}/maketars -d ${DESTDIR} -t ${RELEASEDIR}/binary/sets
|
2000-03-28 04:38:06 +04:00
|
|
|
|
|
|
|
.PRECIOUS: makesums
|
2000-06-20 10:00:24 +04:00
|
|
|
makesums: check_releasedir
|
|
|
|
sh ${.CURDIR}/makesums -t ${RELEASEDIR}/binary/sets
|
2000-03-28 04:38:06 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# MAIN ENTRY POINTS
|
|
|
|
#
|
|
|
|
|
|
|
|
sets: maketars makesums
|
|
|
|
@true
|