Home | History | Annotate | Line # | Download | only in sets
Makefile revision 1.23
      1 #	$NetBSD: Makefile,v 1.23 2003/01/12 18:51:26 veego 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/common/Makefile.distrib"
     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_toolchain_missing: .PHONY
     28 	@echo "${TOOLCHAIN_MISSING}"
     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 ${UNPRIVED:D-M ${METALOG}}
     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 .if defined(DESTDIR) && ${DESTDIR} != ""
     56 	${MAKE} checkflist
     57 .endif
     58 	${SETSENV} sh ${.CURDIR}/maketars -d ${DESTDIR:S,^$,/,} \
     59 	    ${UNPRIVED:D-M ${METALOG}} -N ${NETBSDSRCDIR}/etc \
     60 	    -t ${RELEASEDIR}/${MACHINE}/binary/sets ${MAKETARSETS}
     61 
     62 .PRECIOUS: makesums
     63 makesums: check_RELEASEDIR
     64 	${SETSENV} ${MAKESUMS} -t ${RELEASEDIR}/${MACHINE}/binary/sets
     65 
     66 .PRECIOUS: installsets
     67 installsets: check_DESTDIR
     68 .if !defined(INSTALLDIR)
     69 	@echo "setenv INSTALLDIR before doing that!"
     70 	@false
     71 .endif
     72 	${SETSENV} sh ${.CURDIR}/maketars -d ${DESTDIR:S,^$,/,} \
     73 	    ${UNPRIVED:D-M ${METALOG}} -N ${NETBSDSRCDIR}/etc \
     74 	    -i ${INSTALLDIR} ${INSTALLSETS}
     75 
     76 #
     77 # MAIN ENTRY POINTS
     78 #
     79 
     80 sets: maketars .WAIT makesums
     81 	@true
     82 
     83 .include <bsd.sys.mk>
     84