Don't make crt0.s depend on the now defunct start32.inc

This commit is contained in:
Eric W. Biederman 2001-08-21 03:01:45 +00:00
commit dc97310a17

View file

@ -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 $<