diff options
| author | kim <kim@NetBSD.org> | 1999-06-13 17:21:18 +0000 |
|---|---|---|
| committer | kim <kim@NetBSD.org> | 1999-06-13 17:21:18 +0000 |
| commit | c867e93faeddd92bb1cf2a8156aa313557f154ae (patch) | |
| tree | 66c1ba392c651d9635a5ff6aba7a30fd0d1091ad /sys | |
| parent | 72a64c54377de49254691d354f3bd57f52ae4795 (diff) | |
Pickup changes from ../biosboot/Makefile and add .PATH so that source
files are found. Now this compiles ok (have yet to run the blocks).
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/arch/i386/stand/biosboot_ser/Makefile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/sys/arch/i386/stand/biosboot_ser/Makefile b/sys/arch/i386/stand/biosboot_ser/Makefile index cbcad69a7c8..911358fbf00 100644 --- a/sys/arch/i386/stand/biosboot_ser/Makefile +++ b/sys/arch/i386/stand/biosboot_ser/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1999/03/14 05:50:39 sommerfe Exp $ +# $NetBSD: Makefile,v 1.4 1999/06/13 17:21:18 kim Exp $ S= ${.CURDIR}/../../../../ @@ -7,12 +7,12 @@ PROG= ${BASE}.sym MKMAN= no NEWVERSWHAT= "BIOS Boot" +.PATH: ${.CURDIR}/../biosboot/ SRCS= main.c devopen.c conf.c exec.c CLEANFILES+= ${BSSTART} -CPPFLAGS+= -DCOMPAT_OLDBOOT -DCOMPAT_386BSD_MBRPART - +CPPFLAGS+= -DCOMPAT_OLDBOOT -DCOMPAT_386BSD_MBRPART -DDEBUG #Sample use of serial line debugger #CPPFLAGS+= -DSUPPORT_SERIAL=CONSDEV_COM0KBD @@ -20,6 +20,7 @@ CPPFLAGS+= -DCOMPAT_OLDBOOT -DCOMPAT_386BSD_MBRPART CPPFLAGS+= -DSUPPORT_SERIAL=CONSDEV_AUTO -DDIRECT_SERIAL # and maybe #CPPFLAGS+= -DDIRECT_SERIAL -DCOMCONS_KEYPRESS -DCONSPEED=57600 + CPPFLAGS+= -DPASS_BIOSGEOM #uncomment if there are problems with memory detection #CPPFLAGS+= -DCONSERVATIVE_MEMDETECT @@ -30,11 +31,7 @@ CPPFLAGS+= -DPASS_BIOSGEOM #CPPFLAGS+= -DPRIM_LOADSZ=9 #CFLAGS= -O2 -fomit-frame-pointer -fno-defer-pop -CFLAGS+= -Wall - -# XXX should go into library -SRCS+= ls.c -.PATH: ${.CURDIR}/../libsa ${.CURDIR}/../biosboot +CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes -Wno-main SAMISCCPPFLAGS+= -DHEAP_START=0x10000 -DHEAP_LIMIT=0x40000 SAMISCMAKEFLAGS= SA_USE_CREAD=yes SA_INCLUDE_NET=no |
