From c1b10f68475bd9832c1d6650964617c90f6d1248 Mon Sep 17 00:00:00 2001 From: Christophe Bothamy Date: Sat, 10 Aug 2002 21:30:41 +0000 Subject: [PATCH] - updated from pex86 Makefile.in. Uses bcc instead of bcc-cc1. --- bochs/bios/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bochs/bios/Makefile.in b/bochs/bios/Makefile.in index 5eb8e26be..9aa9b6e24 100644 --- a/bochs/bios/Makefile.in +++ b/bochs/bios/Makefile.in @@ -74,7 +74,8 @@ bios-clean: rombios.bin: rombios.c biosconfig.h gcc -E $< > _rombios_.c # cat _rombios.c | sed -e "s/##asm/#asm/g" -e "s/##endasm/#endasm/g" > _rombios_.c - bcc-cc1 -o rombios.s -c -D__i86__ -0 _rombios_.c +# bcc-cc1 -o rombios.s -c -D__i86__ -0 _rombios_.c + bcc -o rombios.s -C-c -D__i86__ -0 -S _rombios_.c sed -e 's/^\.text//' -e 's/^\.data//' rombios.s > _rombios_.s as86 _rombios_.s -b rombios.bin -u- -w- -g -0 -j -O -l rombios.txt ls -l rombios.bin