NetBSD/distrib/sets/Makefile
thorpej e7d6b96938 Merge a bunch of things from crypto-us and crypto-intl into basesrc,
adding support for Heimdal/KTH Kerberos where easy to do so.  Eliminate
bsd.crypto.mk.

There is still a bunch more work to do, but crypto is now more-or-less
fully merged into the base NetBSD distribution.
2000-06-20 06:00:24 +00:00

56 lines
900 B
Makefile

# $NetBSD: Makefile,v 1.2 2000/06/20 06:00:27 thorpej Exp $
# 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
#
# SET BUILDING TARGETS
#
.PRECIOUS: checkflist
checkflist: check_destdir
DESTDIR=${DESTDIR} sh ${.CURDIR}/checkflist
.PRECIOUS: maketars
maketars: check_destdir check_releasedir
sh ${.CURDIR}/maketars -d ${DESTDIR} -t ${RELEASEDIR}/binary/sets
.PRECIOUS: makesums
makesums: check_releasedir
sh ${.CURDIR}/makesums -t ${RELEASEDIR}/binary/sets
#
# MAIN ENTRY POINTS
#
sets: maketars makesums
@true