Added `\' (backslash) at the end of line in the CFLAGS definition.

Submitted by:	H. Nokubi <h-nokubi@nmit.mt.nec.co.jp>
This commit is contained in:
KATO Takenori 1997-03-13 02:04:47 +00:00
parent b42575707e
commit c4d420eee3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=23825

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.9 1997/02/22 09:43:00 peter Exp $
# $Id: Makefile,v 1.10 1997/03/08 15:46:59 kato Exp $
#
PROG= boot
@ -9,7 +9,7 @@ SRCS+= probe_keyboard.c io.c disk.c sys.c
BINDIR= /usr/mdec
BINMODE= 444
CFLAGS= -O2 -malign-functions=0 -malign-jumps=0 -malign-loops=0 \
-DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT}
-DPC98 -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT} \
-mno-486 \
CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK}
CFLAGS+= -I${.CURDIR}/../../..