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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [libgloss/] [mep/] [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
# Copyright (c) 1999, 2001, 2003 Red Hat Inc
# Copyright (c) 1999, 2001, 2003 Red Hat Inc
#
#
# The authors hereby grant permission to use, copy, modify, distribute,
# The authors hereby grant permission to use, copy, modify, distribute,
# and license this software and its documentation for any purpose, provided
# and license this software and its documentation for any purpose, provided
# that existing copyright notices are retained in all copies and that this
# that existing copyright notices are retained in all copies and that this
# notice is included verbatim in any distributions. No written agreement,
# notice is included verbatim in any distributions. No written agreement,
# license, or royalty fee is required for any of the authorized uses.
# license, or royalty fee is required for any of the authorized uses.
# Modifications to this software may be copyrighted by their authors
# Modifications to this software may be copyrighted by their authors
# and need not follow the licensing terms described here, provided that
# and need not follow the licensing terms described here, provided that
# the new terms are clearly indicated on the first page of each file where
# the new terms are clearly indicated on the first page of each file where
# they apply.
# they apply.
# Makefile for libgloss/mep.  We only support the simulator at the
# Makefile for libgloss/mep.  We only support the simulator at the
# moment.
# moment.
VPATH = @srcdir@ @srcdir@/..
VPATH = @srcdir@ @srcdir@/..
srcdir = @srcdir@
srcdir = @srcdir@
objdir = .
objdir = .
srcroot = $(srcdir)/../..
srcroot = $(srcdir)/../..
objroot = $(objdir)/../..
objroot = $(objdir)/../..
prefix = @prefix@
prefix = @prefix@
exec_prefix = @exec_prefix@
exec_prefix = @exec_prefix@
host_alias = @host_alias@
host_alias = @host_alias@
target_alias = @target_alias@
target_alias = @target_alias@
bindir = @bindir@
bindir = @bindir@
libdir = @libdir@
libdir = @libdir@
tooldir = $(exec_prefix)/$(target_alias)
tooldir = $(exec_prefix)/$(target_alias)
# Multilib support variables.
# Multilib support variables.
# TOP is used instead of MULTI{BUILD,SRC}TOP.
# TOP is used instead of MULTI{BUILD,SRC}TOP.
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 = rc
AR_FLAGS = rc
OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \
OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \
        then echo ${objroot}/../binutils/objdump ; \
        then echo ${objroot}/../binutils/objdump ; \
        else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
        else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
        then echo ${objroot}/../binutils/objcopy ; \
        then echo ${objroot}/../binutils/objcopy ; \
        else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
        else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
SCRIPTS = min.ld simple.ld fmax.ld
SCRIPTS = min.ld simple.ld fmax.ld
CRT = crt0.o sdram-crt0.o sim-crt0.o simnovec-crt0.o simsdram-crt0.o crtn.o sim-crtn.o
CRT = crt0.o sdram-crt0.o sim-crt0.o simnovec-crt0.o simsdram-crt0.o crtn.o sim-crtn.o
SIM_BSP = libsim.a
SIM_BSP = libsim.a
LIBNOSYS = ../libnosys/libnosys.a
LIBNOSYS = ../libnosys/libnosys.a
SIM_OBJS = \
SIM_OBJS = \
        isatty.o \
        isatty.o \
        sbrk.o \
        sbrk.o \
        syscalls.o \
        syscalls.o \
        mep-gmon.o \
        mep-gmon.o \
        mep-bb.o \
        mep-bb.o \
        handlers.o \
        handlers.o \
        h_reset.o \
        h_reset.o \
        read.o \
        read.o \
        write.o
        write.o
#### Host specific Makefile fragment comes in here.
#### Host specific Makefile fragment comes in here.
@host_makefile_frag@
@host_makefile_frag@
# Override .S.o rule to pass assembler debugging flags
# Override .S.o rule to pass assembler debugging flags
.S.o:
.S.o:
        $(CC) -Wa,-gdwarf2 -Wa,-I$(srcdir) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -c $<
        $(CC) -Wa,-gdwarf2 -Wa,-I$(srcdir) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -c $<
all: $(CRT) $(SIM_BSP)
all: $(CRT) $(SIM_BSP)
$(SIM_BSP): $(SIM_OBJS)
$(SIM_BSP): $(SIM_OBJS)
        $(AR) $(ARFLAGS) $@ $?
        $(AR) $(ARFLAGS) $@ $?
        $(RANLIB) $@
        $(RANLIB) $@
        $(AR) $(ARFLAGS) $(LIBNOSYS) handlers.o h_reset.o
        $(AR) $(ARFLAGS) $(LIBNOSYS) handlers.o h_reset.o
        $(RANLIB) $(LIBNOSYS)
        $(RANLIB) $(LIBNOSYS)
syscalls.o: $(srcdir)/syscalls.S
syscalls.o: $(srcdir)/syscalls.S
sbrk.o: $(srcdir)/sbrk.c
sbrk.o: $(srcdir)/sbrk.c
crt0.o: $(srcdir)/crt0.S $(srcdir)/sim-crt0.S
crt0.o: $(srcdir)/crt0.S $(srcdir)/sim-crt0.S
sdram-crt0.o: $(srcdir)/sdram-crt0.S $(srcdir)/sim-crt0.S
sdram-crt0.o: $(srcdir)/sdram-crt0.S $(srcdir)/sim-crt0.S
sim-crt0.o: $(srcdir)/sim-crt0.S
sim-crt0.o: $(srcdir)/sim-crt0.S
simsdram-crt0.o: $(srcdir)/simsdram-crt0.S $(srcdir)/sim-crt0.S
simsdram-crt0.o: $(srcdir)/simsdram-crt0.S $(srcdir)/sim-crt0.S
simnovec-crt0.o: $(srcdir)/simnovec-crt0.S $(srcdir)/sim-crt0.S
simnovec-crt0.o: $(srcdir)/simnovec-crt0.S $(srcdir)/sim-crt0.S
crtn.o: $(srcdir)/crtn.S $(srcdir)/sim-crtn.S
crtn.o: $(srcdir)/crtn.S $(srcdir)/sim-crtn.S
install: $(CRT) $(SIM_BSP)
install: $(CRT) $(SIM_BSP)
        for c in $(CRT) $(SIM_BSP); do \
        for c in $(CRT) $(SIM_BSP); do \
          $(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$c ;\
          $(INSTALL_DATA) $$c $(tooldir)/lib${MULTISUBDIR}/$$c ;\
        done
        done
        if test -z "$(MULTISUBDIR)"; then \
        if test -z "$(MULTISUBDIR)"; then \
          for c in $(SCRIPTS); do \
          for c in $(SCRIPTS); do \
            $(INSTALL_DATA) $(srcdir)/$$c $(tooldir)/lib${MULTISUBDIR}/$$c ;\
            $(INSTALL_DATA) $(srcdir)/$$c $(tooldir)/lib${MULTISUBDIR}/$$c ;\
          done; \
          done; \
          $(INSTALL_DATA) $(srcdir)/gmap_default.ld $(tooldir)/lib/gmap_default.tmpl; \
          $(INSTALL_DATA) $(srcdir)/gmap_default.ld $(tooldir)/lib/gmap_default.tmpl; \
        else true; fi
        else true; fi
clean mostlyclean:
clean mostlyclean:
        rm -f *.o *.a
        rm -f *.o *.a
distclean maintainer-clean realclean: clean
distclean maintainer-clean realclean: clean
        rm -f Makefile config.cache config.log config.status
        rm -f Makefile config.cache config.log config.status
.PHONY: info dvi doc install-info clean-info
.PHONY: info dvi doc install-info clean-info
info doc dvi:
info doc dvi:
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
 
 

powered by: WebSVN 2.1.0

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