1 1.6 lukem # $NetBSD: Makefile,v 1.6 2002/02/27 10:51:47 lukem Exp $ 2 1.1 thorpej 3 1.1 thorpej # The `all' target must appear before bsd.own.mk is pulled in. 4 1.1 thorpej all: 5 1.1 thorpej @echo "Please understand what you are doing, first." 6 1.1 thorpej @false 7 1.1 thorpej 8 1.1 thorpej # 9 1.1 thorpej # DETERMINE WHICH CRYPTO SET TO USE 10 1.1 thorpej # 11 1.1 thorpej 12 1.1 thorpej .include <bsd.own.mk> 13 1.1 thorpej 14 1.1 thorpej # 15 1.1 thorpej # UTILITY TARGETS 16 1.1 thorpej # 17 1.1 thorpej 18 1.1 thorpej check_destdir: .PHONY 19 1.1 thorpej .if !defined(DESTDIR) 20 1.1 thorpej @echo "DESTDIR must be set" 21 1.1 thorpej @false 22 1.1 thorpej .else 23 1.1 thorpej @true 24 1.1 thorpej .endif 25 1.1 thorpej 26 1.1 thorpej check_releasedir: .PHONY 27 1.1 thorpej .if !defined(RELEASEDIR) 28 1.1 thorpej @echo "RELEASEDIR must be set" 29 1.1 thorpej @false 30 1.1 thorpej .else 31 1.1 thorpej @true 32 1.1 thorpej .endif 33 1.1 thorpej 34 1.6 lukem SETSENV= DESTDIR=${DESTDIR:Q} \ 35 1.6 lukem MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \ 36 1.6 lukem MAKE=${MAKE:Q} MTREE=${MTREE:Q} PAX=${PAX:Q} 37 1.6 lukem 38 1.3 thorpej print_machine: .PHONY 39 1.3 thorpej @echo ${MACHINE} 40 1.3 thorpej 41 1.3 thorpej print_machine_arch: .PHONY 42 1.3 thorpej @echo ${MACHINE_ARCH} 43 1.3 thorpej 44 1.3 thorpej print_machine_cpu: .PHONY 45 1.3 thorpej @echo ${MACHINE_CPU} 46 1.3 thorpej 47 1.3 thorpej print_object_fmt: .PHONY 48 1.3 thorpej @echo ${OBJECT_FMT} 49 1.3 thorpej 50 1.3 thorpej print_use_new_toolchain: .PHONY 51 1.3 thorpej @echo "${USE_NEW_TOOLCHAIN:Dyes}" 52 1.5 tron 53 1.5 tron print_x11_version: .PHONY 54 1.5 tron .if defined(USE_XF86_4) && (${USE_XF86_4} != no) 55 1.5 tron @echo 4 56 1.5 tron .else 57 1.5 tron @echo 3 58 1.5 tron .endif 59 1.3 thorpej 60 1.3 thorpej # This target has debugging value only, really. 61 1.3 thorpej makeflist: .PHONY check_destdir 62 1.6 lukem ${SETSENV} sh ${.CURDIR}/makeflist 63 1.3 thorpej 64 1.1 thorpej # 65 1.1 thorpej # SET BUILDING TARGETS 66 1.1 thorpej # 67 1.1 thorpej 68 1.1 thorpej .PRECIOUS: checkflist 69 1.1 thorpej checkflist: check_destdir 70 1.6 lukem ${SETSENV} sh ${.CURDIR}/checkflist 71 1.4 mrg 72 1.4 mrg .PRECIOUS: checkflist 73 1.4 mrg checkflist-x11: check_destdir 74 1.6 lukem ${SETSENV} sh ${.CURDIR}/checkflist -x11 75 1.1 thorpej 76 1.2 thorpej .PRECIOUS: maketars 77 1.2 thorpej maketars: check_destdir check_releasedir 78 1.6 lukem ${SETSENV} sh ${.CURDIR}/maketars ${UNPRIVED:D-M ${METALOG}} \ 79 1.6 lukem -d ${DESTDIR} -t ${RELEASEDIR}/binary/sets 80 1.1 thorpej 81 1.2 thorpej .PRECIOUS: makesums 82 1.2 thorpej makesums: check_releasedir 83 1.6 lukem ${SETSENV} sh ${.CURDIR}/makesums -t ${RELEASEDIR}/binary/sets 84 1.1 thorpej 85 1.1 thorpej # 86 1.1 thorpej # MAIN ENTRY POINTS 87 1.1 thorpej # 88 1.1 thorpej 89 1.1 thorpej sets: maketars makesums 90 1.1 thorpej @true 91