OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [libgloss/] [m32r/] [Makefile.in] - Diff between revs 158 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 158 Rev 816
# Makefile for libgloss/m32r
# Makefile for libgloss/m32r
# Copyright (c) 1996, 1998 Cygnus Support.
# Copyright (c) 1996, 1998 Cygnus Support.
# All rights reserved.
# All rights reserved.
#
#
# Redistribution and use in source and binary forms are permitted
# Redistribution and use in source and binary forms are permitted
# provided that the above copyright notice and this paragraph are
# provided that the above copyright notice and this paragraph are
# duplicated in all such forms and that any documentation,
# duplicated in all such forms and that any documentation,
# advertising materials, and other materials related to such
# advertising materials, and other materials related to such
# distribution and use acknowledge that the software was developed
# distribution and use acknowledge that the software was developed
# at Cygnus Support, Inc.  Cygnus Support, Inc. may not be used to
# at Cygnus Support, Inc.  Cygnus Support, Inc. may not be used to
# endorse or promote products derived from this software without
# endorse or promote products derived from this software without
# specific prior written permission.
# specific prior written permission.
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
DESTDIR =
DESTDIR =
VPATH = @srcdir@ @srcdir@/..
VPATH = @srcdir@ @srcdir@/..
srcdir = @srcdir@
srcdir = @srcdir@
objdir = .
objdir = .
srcroot = $(srcdir)/../..
srcroot = $(srcdir)/../..
objroot = $(objdir)/../..
objroot = $(objdir)/../..
host_alias = @host_alias@
host_alias = @host_alias@
target_alias = @target_alias@
target_alias = @target_alias@
prefix = @prefix@
prefix = @prefix@
exec_prefix = @exec_prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
bindir = @bindir@
libdir = @libdir@
libdir = @libdir@
tooldir = $(exec_prefix)/$(target_alias)
tooldir = $(exec_prefix)/$(target_alias)
TOP = ../..
TOP = ../..
SRCTOP = ../..
SRCTOP = ../..
# Multilib support variables.
# Multilib support variables.
# TOP is used instead of MULTI{BUILD,SRC}TOP.
# TOP is used instead of MULTI{BUILD,SRC}TOP.
MULTISRCTOP =
MULTISRCTOP =
MULTIBUILDTOP =
MULTIBUILDTOP =
MULTIDIRS =
MULTIDIRS =
MULTISUBDIR =
MULTISUBDIR =
MULTIDO = true
MULTIDO = true
MULTICLEAN = true
MULTICLEAN = true
INSTALL = @INSTALL@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_DATA = @INSTALL_DATA@
SHELL = /bin/sh
SHELL = /bin/sh
CC = @CC@
CC = @CC@
AS = @AS@
AS = @AS@
AR = @AR@
AR = @AR@
LD = @LD@
LD = @LD@
RANLIB = @RANLIB@
RANLIB = @RANLIB@
AR_FLAGS = qv
AR_FLAGS = qv
BISON = bison
BISON = bison
MAKEINFO = makeinfo
MAKEINFO = makeinfo
.NOEXPORT:
.NOEXPORT:
MAKEOVERRIDES=
MAKEOVERRIDES=
TARGETDOC = ../../targetdep.tex
TARGETDOC = ../../targetdep.tex
CRT0 = crt0.o
CRT0 = crt0.o
GDBLIB = m32r-lib.o
GDBLIB = m32r-lib.o
GDBSTUB = m32r-stub.o
GDBSTUB = m32r-stub.o
EVASCRIPT = eva.ld
EVASCRIPT = eva.ld
STUBSCRIPT = eva-stub.ld
STUBSCRIPT = eva-stub.ld
GENERIC_LIBOBJS = \
GENERIC_LIBOBJS = \
        chmod.o close.o exit.o fstat.o getpid.o isatty.o kill.o lseek.o \
        chmod.o close.o exit.o fstat.o getpid.o isatty.o kill.o lseek.o \
        open.o raise.o read.o sbrk.o stat.o unlink.o utime.o write.o
        open.o raise.o read.o sbrk.o stat.o unlink.o utime.o write.o
LIBOBJS = trap0.o $(GENERIC_LIBOBJS)
LIBOBJS = trap0.o $(GENERIC_LIBOBJS)
LIBGLOSS = libgloss.a
LIBGLOSS = libgloss.a
MONLIBOBJS = trapmon0.o $(GENERIC_LIBOBJS)
MONLIBOBJS = trapmon0.o $(GENERIC_LIBOBJS)
MONLIBGLOSS = libmon.a
MONLIBGLOSS = libmon.a
MONSPECS = mon.specs
MONSPECS = mon.specs
# Host specific makefile fragment comes in here.
# Host specific makefile fragment comes in here.
@host_makefile_frag@
@host_makefile_frag@
all: $(CRT0) $(LIBGLOSS) $(MONLIBGLOSS) $(GDBLIB) $(GDBSTUB)
all: $(CRT0) $(LIBGLOSS) $(MONLIBGLOSS) $(GDBLIB) $(GDBSTUB)
libgloss.a: $(LIBOBJS)
libgloss.a: $(LIBOBJS)
        $(AR) $(ARFLAGS) $@ $(LIBOBJS)
        $(AR) $(ARFLAGS) $@ $(LIBOBJS)
        $(RANLIB) $@
        $(RANLIB) $@
libmon.a: $(MONLIBOBJS)
libmon.a: $(MONLIBOBJS)
        $(AR) $(ARFLAGS) $@ $(MONLIBOBJS)
        $(AR) $(ARFLAGS) $@ $(MONLIBOBJS)
        $(RANLIB) $@
        $(RANLIB) $@
install:
install:
        mkdir -p $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}
        mkdir -p $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}
        $(INSTALL_DATA) $(CRT0) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(CRT0)
        $(INSTALL_DATA) $(CRT0) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(CRT0)
        $(INSTALL_DATA) $(LIBGLOSS) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(LIBGLOSS)
        $(INSTALL_DATA) $(LIBGLOSS) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(LIBGLOSS)
        $(INSTALL_DATA) $(MONLIBGLOSS) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(MONLIBGLOSS)
        $(INSTALL_DATA) $(MONLIBGLOSS) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(MONLIBGLOSS)
        $(INSTALL_DATA) $(GDBLIB) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(GDBLIB)
        $(INSTALL_DATA) $(GDBLIB) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(GDBLIB)
        $(INSTALL_DATA) $(GDBSTUB) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(GDBSTUB)
        $(INSTALL_DATA) $(GDBSTUB) $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}/$(GDBSTUB)
        $(INSTALL_DATA) $(srcdir)/$(EVASCRIPT) $(DESTDIR)$(tooldir)/lib/$(EVASCRIPT)
        $(INSTALL_DATA) $(srcdir)/$(EVASCRIPT) $(DESTDIR)$(tooldir)/lib/$(EVASCRIPT)
        $(INSTALL_DATA) $(srcdir)/$(STUBSCRIPT) $(DESTDIR)$(tooldir)/lib/$(STUBSCRIPT)
        $(INSTALL_DATA) $(srcdir)/$(STUBSCRIPT) $(DESTDIR)$(tooldir)/lib/$(STUBSCRIPT)
        $(INSTALL_DATA) $(srcdir)/$(MONSPECS) $(DESTDIR)$(tooldir)/lib/$(MONSPECS)
        $(INSTALL_DATA) $(srcdir)/$(MONSPECS) $(DESTDIR)$(tooldir)/lib/$(MONSPECS)
clean mostlyclean:
clean mostlyclean:
        rm -f *~ *.[oa]
        rm -f *~ *.[oa]
distclean maintainer-clean realclean: clean
distclean maintainer-clean realclean: clean
        rm -f Makefile config.status
        rm -f Makefile config.status
info doc:
info doc:
install-info:
install-info:
clean-info:
clean-info:
Makefile: Makefile.in config.status @host_makefile_frag_path@
Makefile: Makefile.in config.status @host_makefile_frag_path@
        $(SHELL) config.status
        $(SHELL) config.status
config.status: configure
config.status: configure
        $(SHELL) config.status --recheck
        $(SHELL) config.status --recheck
# to support SunOS VPATH
# to support SunOS VPATH
crt0.o: crt0.S
crt0.o: crt0.S
m32r-lib.o: m32r-lib.c
m32r-lib.o: m32r-lib.c
m32r-stub.o: m32r-stub.c
m32r-stub.o: m32r-stub.c
chmod.o: chmod.c
chmod.o: chmod.c
close.o: close.c
close.o: close.c
exit.o: exit.c
exit.o: exit.c
fstat.o: fstat.c
fstat.o: fstat.c
getpid.o: getpid.c
getpid.o: getpid.c
isatty.o: isatty.c
isatty.o: isatty.c
kill.o: kill.c
kill.o: kill.c
lseek.o: lseek.c
lseek.o: lseek.c
open.o: open.c
open.o: open.c
raise.o: raise.c
raise.o: raise.c
read.o: read.c
read.o: read.c
sbrk.o: sbrk.c
sbrk.o: sbrk.c
stat.o: stat.c
stat.o: stat.c
unlink.o: unlink.c
unlink.o: unlink.c
utime.o: utime.c
utime.o: utime.c
write.o: write.c
write.o: write.c
trap0.o: trap0.S
trap0.o: trap0.S
trapmon0.o: trapmon0.c
trapmon0.o: trapmon0.c
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.