Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-11-13 02:14:24 +0300
committerJeff Johnston <jjohnstn@redhat.com>2002-11-13 02:14:24 +0300
commit2d210c7fd118818417ab0f5205fd7b0b16cf6d0e (patch)
tree9ec3cb4aaeeee39e380b90236cd66e058a296937 /libgloss/mips/Makefile.in
parent944772c70a9e76c4f77c9b17593b433fd46558af (diff)
2002-11-12 Jeff Johnston <jjohnstn@redhat.com>
* mips/Makefile.in: Add cygmon support. * mips/configure.in: Ditto. * mips/configure: Regenerated. * mips/crt0_cygmon.S: New file. * mips/cygmon.c: Ditto. * mips/pmon.S: Minor formatting and copyright changes. * mips/crt0.S: Ditto.
Diffstat (limited to 'libgloss/mips/Makefile.in')
-rw-r--r--libgloss/mips/Makefile.in21
1 files changed, 11 insertions, 10 deletions
diff --git a/libgloss/mips/Makefile.in b/libgloss/mips/Makefile.in
index 14fecaa20..78d6f4752 100644
--- a/libgloss/mips/Makefile.in
+++ b/libgloss/mips/Makefile.in
@@ -1,4 +1,4 @@
-# Copyright (c) 1995, 1996, 1997, 1998, 1999 Cygnus Support
+# Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000 Cygnus Support
#
# The authors hereby grant permission to use, copy, modify, distribute,
# and license this software and its documentation for any purpose, provided
@@ -75,6 +75,7 @@ DVEOBJS = dvemon.o @part_specific_obj@ ${GENOBJS} ${GENOBJS2}
JMR3904OBJS = jmr3904-io.o @part_specific_obj@ ${GENOBJS} ${GENOBJS2}
CFEOBJS = cfe.o cfe_api.o cfe_prestart.o \
@part_specific_obj@ ${GENOBJS} ${GENOBJS2}
+CYGMONOBJS = open.o close.o cygmon.o @part_specific_obj@ ${GENOBJS}
# Nullmon cannot support read and write, but the test cases pull them in via libs
NULLMONOBJS = nullmon.o @part_specific_obj@ ${GENOBJS}
@@ -131,6 +132,11 @@ libjmr3904.a: $(JMR3904OBJS)
${AR} ${ARFLAGS} $@ $(JMR3904OBJS)
${RANLIB} $@
+libcygmon.a: $(CYGMONOBJS)
+ ${AR} ${ARFLAGS} $@ $(CYGMONOBJS)
+ ${RANLIB} $@
+
+
libcfe.a: $(CFEOBJS)
${AR} ${ARFLAGS} $@ $(CFEOBJS)
${RANLIB} $@
@@ -196,17 +202,11 @@ distclean maintainer-clean realclean: clean
.PHONY: install info install-info clean-info
install:
- if test "x$(CRT0)" != x ; then \
- $(INSTALL_PROGRAM) $(CRT0) $(tooldir)/lib${MULTISUBDIR}/$(CRT0) ; \
- fi
- if test "x$(PCRT0)" != x ; then \
- $(INSTALL_PROGRAM) $(PCRT0) $(tooldir)/lib${MULTISUBDIR}/$(PCRT0) ; \
- fi
- @for bsp in ${BSP}; do\
- $(INSTALL_PROGRAM) $${bsp} $(tooldir)/lib${MULTISUBDIR}; \
+ @for file in $(CRT0) $(PCRT0) $(BSP); do \
+ $(INSTALL_DATA) $${file} $(tooldir)/lib${MULTISUBDIR}; \
done
@for script in ${SCRIPTS}; do\
- $(INSTALL_DATA) ${srcdir}/$${script}.ld $(tooldir)/lib${MULTISUBDIR}/$${script}.ld; \
+ $(INSTALL_DATA) ${srcdir}/$${script}.ld $(tooldir)/lib${MULTISUBDIR}/$${script}.ld; \
done
info:
@@ -219,6 +219,7 @@ test.o: ${srcdir}/test.c
crt0.o: ${srcdir}/crt0.S
pcrt0.o: ${srcdir}/crt0.S
$(CC) -c $(CFLAGS_FOR_TARGET) $(CFLAGS) -DGCRT0 ${srcdir}/crt0.S -o ${PCRT0}
+crt0_cygmon.o: ${srcdir}/crt0_cygmon.S
idtmon.o: ${srcdir}/idtmon.S
pmon.o: ${srcdir}/pmon.S
$(CC) -c $(CFLAGS_FOR_TARGET) $(CFLAGS) $(PART_SPECIFIC_DEFINES) ${srcdir}/pmon.S -o pmon.o