Home | History | Annotate | Line # | Download | only in stand
Makefile.inc revision 1.10
      1  1.10    jhawk #	$NetBSD: Makefile.inc,v 1.10 2000/08/30 23:51:54 jhawk Exp $
      2   1.1  thorpej 
      3   1.1  thorpej BINDIR=			/usr/mdec
      4   1.1  thorpej 
      5   1.1  thorpej # RELOC=FFF00000 allows for boot prog up to FF000 (1044480) bytes long
      6   1.1  thorpej RELOC=	FFF00000
      7   1.1  thorpej 
      8   1.7  thorpej CPPFLAGS+=		-DDCACONSOLE -DAPCICONSOLE -DITECONSOLE -DDCMCONSOLE
      9   1.4  thorpej CPPFLAGS+=		-DHIL_KEYBOARD -DUK_KEYBOARD
     10   1.4  thorpej CPPFLAGS+=		-DDOMAIN_KEYBOARD
     11   1.8  thorpej CPPFLAGS+=		-D_STANDALONE -DCOMPAT_NOLABEL -Dhp300
     12   1.1  thorpej CPPFLAGS+=		-DCOMPAT_UFS -DNO_LSEEK
     13   1.3  thorpej 
     14   1.3  thorpej # Limit the alloc() heap to below the msgbuf and ROM scratch pages.
     15   1.3  thorpej CPPFLAGS+=		-DHEAP_LIMIT="0xffffdfff"
     16   1.1  thorpej 
     17   1.6  thorpej COMMONSOURCE=		srt0.S autoconf.c clock.c conf.c cons.c devopen.c \
     18   1.2  thorpej 			machdep.c prf.c rawfs.c netio.c
     19   1.7  thorpej DRIVERSOURCE=		apci.c ct.c dca.c dcm.c dnkbd.c fhpib.c hil.c \
     20   1.7  thorpej 			hpib.c if_le.c ite.c ite_dv.c ite_gb.c ite_rb.c \
     21   1.7  thorpej 			ite_subr.c ite_tc.c ite_hy.c kbd.c kbdconf.c \
     22   1.7  thorpej 			nhpib.c rd.c scsi.c sd.c
     23   1.1  thorpej 
     24   1.1  thorpej ### Figure out what to use for mkboot
     25   1.1  thorpej MKBOOTDIR=		${.CURDIR}/../mkboot
     26   1.1  thorpej 
     27   1.1  thorpej .if exists(${MKBOOTDIR}/obj.${MACHINE})
     28   1.1  thorpej MKBOOTOBJDIR=		${MKBOOTDIR}/obj.${MACHINE}
     29   1.1  thorpej .elif exists (${MKBOOTDIR}/obj)
     30   1.1  thorpej MKBOOTOBJDIR=		${MKBOOTDIR}/obj
     31   1.1  thorpej .else
     32   1.1  thorpej MKBOOTOBJDIR=		${MKBOOTDIR}
     33   1.1  thorpej .endif
     34   1.1  thorpej 
     35   1.1  thorpej MKBOOT_PROG=		${MKBOOTOBJDIR}/mkboot
     36   1.1  thorpej 
     37   1.1  thorpej # Make sure ${MKBOOT_PROG} is always available
     38   1.1  thorpej ${MKBOOT_PROG}:
     39  1.10    jhawk 	@cd ${MKBOOTDIR} && ${MAKE} depend && ${MAKE}
     40   1.9       he 
     41   1.9       he release:
     42