From dc97310a17c53e3b74cd42d1ddda56d62faccf59 Mon Sep 17 00:00:00 2001 From: "Eric W. Biederman" Date: Tue, 21 Aug 2001 03:01:45 +0000 Subject: [PATCH] Don't make crt0.s depend on the now defunct start32.inc --- src/arch/i386/config/make.base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/i386/config/make.base b/src/arch/i386/config/make.base index 121e48912a..9dcbccd225 100644 --- a/src/arch/i386/config/make.base +++ b/src/arch/i386/config/make.base @@ -41,7 +41,7 @@ makerule documentation: $(SOURCES) ; doxygen LinuxBIOSDoc.config makerule linuxbios.a : $(OBJECTS-1) ; rm -f linuxbios.a addaction linuxbios.a ar cr linuxbios.a $(OBJECTS-1) -makerule crt0.s: crt0.S $(TOP)/src/cpu/p5/start32.inc ; $(CPP) $(CPPFLAGS) -I$(TOP)/src $< > crt0.s +makerule crt0.s: crt0.S ; $(CPP) $(CPPFLAGS) -I$(TOP)/src $< > crt0.s makerule crt0.o : crt0.s; $(CC) $(CPU_OPT) -c crt0.s makerule mkrom: $(TOP)/mkrom/mkrom.c ; $(CC) -o mkrom $<