1 # $NetBSD: Makefile,v 1.14 2002/04/29 05:02:57 sommerfeld Exp $ 2 3 # The `all' target must appear before bsd.own.mk is pulled in. 4 all: 5 @echo "Please understand what you are doing, first." 6 @false 7 8 .include <bsd.own.mk> 9 .include "${NETBSDSRCDIR}/distrib/Makefile.inc" 10 11 SETSENV= DESTDIR=${DESTDIR:Q} \ 12 MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \ 13 MAKE=${MAKE:Q} MTREE=${MTREE:Q} PAX=${PAX:Q} 14 15 print_machine: .PHONY 16 @echo ${MACHINE} 17 18 print_machine_arch: .PHONY 19 @echo ${MACHINE_ARCH} 20 21 print_machine_cpu: .PHONY 22 @echo ${MACHINE_CPU} 23 24 print_object_fmt: .PHONY 25 @echo ${OBJECT_FMT} 26 27 print_use_new_toolchain: .PHONY 28 @echo "${USE_NEW_TOOLCHAIN:Dyes}" 29 30 print_x11_version: .PHONY 31 .if defined(USE_XF86_4) && (${USE_XF86_4} != no) 32 @echo 4 33 .else 34 @echo 3 35 .endif 36 37 # This target has debugging value only, really. 38 makeflist: .PHONY check_DESTDIR 39 ${SETSENV} sh ${.CURDIR}/makeflist 40 41 # 42 # SET BUILDING TARGETS 43 # 44 45 .PRECIOUS: checkflist 46 checkflist: check_DESTDIR 47 ${SETSENV} sh ${.CURDIR}/checkflist 48 49 .PRECIOUS: checkflist-x11 50 checkflist-x11: check_DESTDIR 51 ${SETSENV} sh ${.CURDIR}/checkflist -x11 52 53 .PRECIOUS: maketars 54 maketars: check_DESTDIR check_RELEASEDIR 55 ${SETSENV} sh ${.CURDIR}/maketars ${UNPRIVED:D-M ${METALOG}} \ 56 -d ${DESTDIR} -t ${RELEASEDIR}/binary/sets ${MAKETARSETS} 57 58 .PRECIOUS: makesums 59 makesums: check_RELEASEDIR 60 ${SETSENV} ${MAKESUMS} -t ${RELEASEDIR}/binary/sets 61 62 # 63 # MAIN ENTRY POINTS 64 # 65 66 sets: maketars .WAIT makesums 67 @true 68 69 .include <bsd.sys.mk> 70