#define was wrong. Some .c should be .s.

This commit is contained in:
ragge 1999-03-27 09:33:30 +00:00
parent 5bc91073ce
commit 11f0bebf2b
2 changed files with 5 additions and 5 deletions

View File

@ -1,12 +1,12 @@
# $NetBSD: Makefile,v 1.1 1999/03/06 16:36:04 ragge Exp $
# $NetBSD: Makefile,v 1.2 1999/03/27 09:33:30 ragge Exp $
S= ${.CURDIR}/../../../../
PROG= boot
NOMAN= 1
DEVS= hp.c ctu.c ra.c tmscp.c mfm.c if_qe.c if_le.c if_ze.c
SRCS= srt0.s boot.c devopen.c conf.c autoconf.c netio.c rom.c romread.c \
urem.c udiv.c consio.c str.c ${DEVS}
SRCS= srt0.s boot.c devopen.c conf.c autoconf.c netio.c rom.c romread.s \
urem.s udiv.s consio.c str.s ${DEVS}
CLEANFILES+=${PROG} ${PROG}.mop
CPPFLAGS+=-DSUPPORT_BOOTPARAMS -DSUPPORT_BOOTP -DSUPPORT_DHCP -D_STANDALONE

View File

@ -1,4 +1,4 @@
/* $NetBSD: consio.c,v 1.1 1999/03/06 16:36:05 ragge Exp $ */
/* $NetBSD: consio.c,v 1.2 1999/03/27 09:33:31 ragge Exp $ */
/*
* Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -172,7 +172,7 @@ setup()
case VAX_BTYP_49:
case VAX_BTYP_410:
case VAX_BTYP_420:
case VAX_BTYP_440:
case VAX_BTYP_48:
put_fp = rom_putchar;
get_fp = rom_getchar;
test_fp = rom_testchar;