OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [libgloss/] [spu/] [Makefile.in] - Diff between revs 207 and 345

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
# Copyright (c) 1998 Cygnus Support
# Copyright (c) 1998 Cygnus Support
#
#
# 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.
VPATH = @srcdir@
VPATH = @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@
program_transform_name = @program_transform_name@
program_transform_name = @program_transform_name@
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@
OBJDUMP = `t='$(program_transform_name)'; echo objdump | sed -e $$t`
OBJDUMP = `t='$(program_transform_name)'; echo objdump | sed -e $$t`
OBJCOPY = `t='$(program_transform_name)'; echo objcopy | sed -e $$t`
OBJCOPY = `t='$(program_transform_name)'; echo objcopy | sed -e $$t`
# object files needed
# object files needed
OBJS = \
OBJS = \
        access.o chdir.o chmod.o chown.o close.o conv_stat.o dirfuncs.o dup.o \
        access.o chdir.o chmod.o chown.o close.o conv_stat.o dirfuncs.o dup.o \
        dup2.o exit.o fchdir.o fchmod.o fchown.o fdatasync.o fstat.o fsync.o \
        dup2.o exit.o fchdir.o fchmod.o fchown.o fdatasync.o fstat.o fsync.o \
        ftruncate.o getcwd.o getpagesize.o getpid.o gettimeofday.o isatty.o \
        ftruncate.o getcwd.o getpagesize.o getpid.o gettimeofday.o isatty.o \
        kill.o lchown.o  link.o linux_syscalls.o lockf.o lseek.o lstat.o mkdir.o \
        kill.o lchown.o  link.o linux_syscalls.o lockf.o lseek.o lstat.o mkdir.o \
        mknod.o mkstemp.o mktemp.o mmap_eaddr.o mremap_eaddr.o msync_eaddr.o \
        mknod.o mkstemp.o mktemp.o mmap_eaddr.o mremap_eaddr.o msync_eaddr.o \
        munmap_eaddr.o nanosleep.o open.o pread.o pwrite.o read.o readlink.o \
        munmap_eaddr.o nanosleep.o open.o pread.o pwrite.o read.o readlink.o \
        readv.o rmdir.o sbrk.o sched_yield.o shm_open.o shm_unlink.o stat.o \
        readv.o rmdir.o sbrk.o sched_yield.o shm_open.o shm_unlink.o stat.o \
        symlink.o sync.o syscalls.o truncate.o umask.o unlink.o utime.o utimes.o \
        symlink.o sync.o syscalls.o truncate.o umask.o unlink.o utime.o utimes.o \
        write.o writev.o linux_getpid.o linux_gettid.o times.o getitimer.o \
        write.o writev.o linux_getpid.o linux_gettid.o times.o getitimer.o \
        setitimer.o
        setitimer.o
# Object files specific to particular targets.
# Object files specific to particular targets.
EVALOBJS = ${OBJS}
EVALOBJS = ${OBJS}
GCC_LDFLAGS = `if [ -d ${objroot}/../gcc ] ; \
GCC_LDFLAGS = `if [ -d ${objroot}/../gcc ] ; \
        then echo -L${objroot}/../gcc ; fi`
        then echo -L${objroot}/../gcc ; fi`
CRTOBJS = crti.o crtn.o crt1.o crt2.o gcrt1.o gcrt2.o
CRTOBJS = crti.o crtn.o crt1.o crt2.o gcrt1.o gcrt2.o
OUTPUTS = libgloss.a $(CRTOBJS)
OUTPUTS = libgloss.a $(CRTOBJS)
NEWLIB_CFLAGS = `if [ -d ${objroot}/newlib ]; then echo -I${objroot}/newlib/targ-include -I${srcroot}/newlib/libc/include; fi` -ffunction-sections -fdata-sections
NEWLIB_CFLAGS = `if [ -d ${objroot}/newlib ]; then echo -I${objroot}/newlib/targ-include -I${srcroot}/newlib/libc/include; fi` -ffunction-sections -fdata-sections
NEWLIB_LDFLAGS = `if [ -d ${objroot}/newlib ]; then echo -B${objroot}/newlib/ -L${objroot}/newlib/; fi`
NEWLIB_LDFLAGS = `if [ -d ${objroot}/newlib ]; then echo -B${objroot}/newlib/ -L${objroot}/newlib/; fi`
INCLUDES = -I. -I$(srcdir)/..
INCLUDES = -I. -I$(srcdir)/..
# TODO: Once libspu is installed on the system we can remove this hack
# TODO: Once libspu is installed on the system we can remove this hack
INCLUDES += -I${srcroot}/../libspu/include
INCLUDES += -I${srcroot}/../libspu/include
# Note that when building the library, ${MULTILIB} is not the way multilib
# Note that when building the library, ${MULTILIB} is not the way multilib
# options are passed; they're passed in $(CFLAGS).
# options are passed; they're passed in $(CFLAGS).
CFLAGS_FOR_TARGET = ${MULTILIB} ${INCLUDES} ${NEWLIB_CFLAGS}
CFLAGS_FOR_TARGET = ${MULTILIB} ${INCLUDES} ${NEWLIB_CFLAGS}
LDFLAGS_FOR_TARGET = ${MULTILIB} ${NEWLIB_LDFLAGS}
LDFLAGS_FOR_TARGET = ${MULTILIB} ${NEWLIB_LDFLAGS}
AR_FLAGS = qc
AR_FLAGS = qc
.c.o:
.c.o:
        $(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $<
        $(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $<
.C.o:
.C.o:
        $(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $<
        $(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $<
.s.o:
.s.o:
        $(AS) $(ASFLAGS_FOR_TARGET) $(INCLUDES) $(ASFLAGS) -o $*.o $<
        $(AS) $(ASFLAGS_FOR_TARGET) $(INCLUDES) $(ASFLAGS) -o $*.o $<
#
#
# GCC knows to run the preprocessor on .S files before it assembles them.
# GCC knows to run the preprocessor on .S files before it assembles them.
#
#
.S.o:
.S.o:
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -c $<
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) -c $<
#
#
# this is a bogus target that'll produce an assembler from the
# this is a bogus target that'll produce an assembler from the
# C source with the right compiler options. this is so we can
# C source with the right compiler options. this is so we can
# track down code generation or debug symbol bugs.
# track down code generation or debug symbol bugs.
#
#
.c.s:
.c.s:
        $(CC) $(CFLAGS_FOR_TARGET) -S $(INCLUDES) $(CFLAGS) $<
        $(CC) $(CFLAGS_FOR_TARGET) -S $(INCLUDES) $(CFLAGS) $<
all: ${OUTPUTS}
all: ${OUTPUTS}
#
#
# here's where we build the library for each target
# here's where we build the library for each target
#
#
libgloss.a: $(EVALOBJS)
libgloss.a: $(EVALOBJS)
        ${AR} ${ARFLAGS} $@ $(EVALOBJS)
        ${AR} ${ARFLAGS} $@ $(EVALOBJS)
        ${RANLIB} $@
        ${RANLIB} $@
# C Runtime Library startup code.
# C Runtime Library startup code.
crti.o: $(srcdir)/crti.S
crti.o: $(srcdir)/crti.S
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crti.S -c -o crti.o
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crti.S -c -o crti.o
crtn.o: $(srcdir)/crtn.S
crtn.o: $(srcdir)/crtn.S
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crtn.S -c -o crtn.o
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crtn.S -c -o crtn.o
crt1.o: $(srcdir)/crt0.S
crt1.o: $(srcdir)/crt0.S
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -c -o crt1.o
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -c -o crt1.o
crt2.o: $(srcdir)/crt0.S
crt2.o: $(srcdir)/crt0.S
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_STD_MAIN -c -o crt2.o
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_STD_MAIN -c -o crt2.o
gcrt1.o: $(srcdir)/crt0.S
gcrt1.o: $(srcdir)/crt0.S
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_PROFILE -c -o gcrt1.o
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_PROFILE -c -o gcrt1.o
gcrt2.o: $(srcdir)/crt0.S
gcrt2.o: $(srcdir)/crt0.S
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_PROFILE -D_STD_MAIN -c -o gcrt2.o
        $(CC) $(CFLAGS_FOR_TARGET) $(INCLUDES) $(CFLAGS) $(srcdir)/crt0.S -D_PROFILE -D_STD_MAIN -c -o gcrt2.o
doc:
doc:
clean mostlyclean:
clean mostlyclean:
        rm -f $(OUTPUTS) *.i *~ *.o *-test *.srec *.dis *.map *.x
        rm -f $(OUTPUTS) *.i *~ *.o *-test *.srec *.dis *.map *.x
distclean maintainer-clean realclean: clean
distclean maintainer-clean realclean: clean
        rm -f Makefile config.status $(OUTPUTS)
        rm -f Makefile config.status $(OUTPUTS)
.PHONY: install info install-info clean-info
.PHONY: install info install-info clean-info
install:
install:
        for outputs in ${OUTPUTS}; do\
        for outputs in ${OUTPUTS}; do\
         ${INSTALL_DATA} $${outputs} $(DESTDIR)/${tooldir}/lib${MULTISUBDIR}/$${outputs}; \
         ${INSTALL_DATA} $${outputs} $(DESTDIR)/${tooldir}/lib${MULTISUBDIR}/$${outputs}; \
        done
        done
info:
info:
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
syscalls.o close.o fstat.o lseek.o open.o read.o stat.o unlink.o write.o shm_open.o shm_unlink.o: jsre.h
syscalls.o close.o fstat.o lseek.o open.o read.o stat.o unlink.o write.o shm_open.o shm_unlink.o: jsre.h
 
 

powered by: WebSVN 2.1.0

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