Switch to using standard compile rule for assembly.

This commit is contained in:
Joel Sherrill
1999-02-24 15:26:38 +00:00
parent 4d20133bef
commit d6a5c812ed

View File

@@ -62,10 +62,8 @@ all: ${ARCH} $(SRCS) $(OBJS) $(PGMS)
LINKCMDS=$(srcdir)/../startup/linkcmds
${ARCH}/start16.o: start16.s
sed -e 's/\/\/.*$$//' < $< | $(CPP) $(ASMFLAGS) -I. -I$(srcdir) \
-DASM -DHEADERADDR=$(HEADERADDR) - > $*.i
$(AS) $(ASMFLAGS) -o $@ $*.i
${ARCH}/start16.o: start16.S
${COMPILE.S} -DHEADERADDR=$(HEADERADDR) -o $@ $<
${ARCH}/start16.bin: ${ARCH}/start16.o
$(LD) -N -T $(LINKCMDS) -Ttext $(START16ADDR) -e start16 -nostdlib \