summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/start/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-02-24 15:26:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-02-24 15:26:38 +0000
commitd6a5c812ed39664d6d128d01aa15c371a6530d45 (patch)
tree8a0d7107af2d8da43fb90204841995c9c2ba7f57 /c/src/lib/libbsp/i386/pc386/start/Makefile.in
parentPatch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>. The following email (diff)
downloadrtems-d6a5c812ed39664d6d128d01aa15c371a6530d45.tar.bz2
Switch to using standard compile rule for assembly.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/i386/pc386/start/Makefile.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/start/Makefile.in b/c/src/lib/libbsp/i386/pc386/start/Makefile.in
index 48408c8c3c..4f5ba6b964 100644
--- a/c/src/lib/libbsp/i386/pc386/start/Makefile.in
+++ b/c/src/lib/libbsp/i386/pc386/start/Makefile.in
@@ -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 \