summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/tools/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-06-03 18:47:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-06-03 18:47:44 +0000
commit5184958afe5346c0df560e461908ed508ca10f61 (patch)
tree2c2c794743fb370d97abf0e9139458412334164a /c/src/lib/libbsp/i386/pc386/tools/Makefile.in
parentChanged spacing (diff)
downloadrtems-5184958afe5346c0df560e461908ed508ca10f61.tar.bz2
Update from Pedro Romano <pmcnr@camoes.rnl.ist.utl.pt> which replaces C++
versions of these utilities with C implementations.
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/tools/Makefile.in')
-rw-r--r--c/src/lib/libbsp/i386/pc386/tools/Makefile.in19
1 files changed, 10 insertions, 9 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/tools/Makefile.in b/c/src/lib/libbsp/i386/pc386/tools/Makefile.in
index e2c8c4465f..f62a47bb69 100644
--- a/c/src/lib/libbsp/i386/pc386/tools/Makefile.in
+++ b/c/src/lib/libbsp/i386/pc386/tools/Makefile.in
@@ -22,11 +22,12 @@ VPATH=@srcdir@
USE_HOST_COMPILER=yes
# C source names, if any, go here -- minus the .c
-C_PIECES=
-CC_PIECES=bin2boot Header Image
+C_PIECES=bin2boot Header Image
C_FILES=$(C_PIECES:%=%.c)
-CC_FILES=$(CC_PIECES:%=%.cc)
C_O_FILES=$(C_PIECES:%=$(ARCH)/%.o)
+
+CC_PIECES=
+CC_FILES=$(CC_PIECES:%=%.cc)
CC_O_FILES=$(CC_PIECES:%=$(ARCH)/%.o)
H_FILES=bytetype.h Header.h Image.h
@@ -45,11 +46,11 @@ include $(RTEMS_ROOT)/make/leaf.cfg
DEFINES +=
CPPFLAGS +=
-CFLAGS +=
-CXXFLAGS += -g -Wall
+CFLAGS += -g -Wall
+CXXFLAGS +=
LD_PATHS +=
-LD_LIBS += -lstdc++
+LD_LIBS +=
LDFLAGS += -g
#
@@ -67,7 +68,7 @@ all: $(ARCH) $(SRCS) $(PGMS)
$(ARCH)/bin2boot: $(OBJS)
$(CC) $(LDFLAGS) $^ -o $@ $(LD_LIBS)
-$(ARCH)/bin2boot.o : bin2boot.cc Header.h Image.h bytetype.h
-$(ARCH)/Header.o: Header.cc Header.h bytetype.h
-$(ARCH)/Image.o: Image.cc Image.h bytetype.h
+$(ARCH)/bin2boot.o: bin2boot.c Header.h Image.h bytetype.h
+$(ARCH)/Header.o: Header.c Header.h bytetype.h
+$(ARCH)/Image.o: Image.c Image.h bytetype.h