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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [libgloss/] [xstormy16/] [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
#
#
#
#
DESTDIR =
DESTDIR =
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)
INSTALL = @INSTALL@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_DATA = @INSTALL_DATA@
# 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 =
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@
# Yuk.
# Yuk.
OBJCOPY = $(subst ranlib,objcopy,$(RANLIB))
OBJCOPY = $(subst ranlib,objcopy,$(RANLIB))
OBJS            = isatty.o
OBJS            = isatty.o
CFLAGS          = -g -O2
CFLAGS          = -g -O2
ASFLAGS         = --gdwarf2
ASFLAGS         = --gdwarf2
SCRIPTS         =
SCRIPTS         =
CRT             = crt0.o crti.o crtn.o
CRT             = crt0.o crti.o crtn.o
# Here is all of the simulator stuff
# Here is all of the simulator stuff
SIM_SCRIPTS     = sim_high.ld sim_rom.ld
SIM_SCRIPTS     = sim_high.ld sim_rom.ld
SIM_LDFLAGS     =
SIM_LDFLAGS     =
SIM_BSP         = libsim.a
SIM_BSP         = libsim.a
SIM_OBJS        = syscalls.o sim_malloc_start.o
SIM_OBJS        = syscalls.o sim_malloc_start.o
# Here is stuff for building apps for GDB on the EVA board
# Here is stuff for building apps for GDB on the EVA board
EVA_APP_BSP     = libeva_app.a
EVA_APP_BSP     = libeva_app.a
EVA_APP_OBJS    = close.o fstat.o getpid.o kill.o lseek.o open.o \
EVA_APP_OBJS    = close.o fstat.o getpid.o kill.o lseek.o open.o \
                  stat.o unlink.o eva_app.o
                  stat.o unlink.o eva_app.o
EVA_APP_SCRIPTS = eva_app.ld
EVA_APP_SCRIPTS = eva_app.ld
# Stub stuff
# Stub stuff
EVA_STUB_HEX    = eva_stub.hex
EVA_STUB_HEX    = eva_stub.hex
EVA_STUB        = eva_stub.elf
EVA_STUB        = eva_stub.elf
EVA_STUB_OBJS   = xstormy16_stub.o crt0_stub.o
EVA_STUB_OBJS   = xstormy16_stub.o crt0_stub.o
# Host specific makefile fragment comes in here.
# Host specific makefile fragment comes in here.
@host_makefile_frag@
@host_makefile_frag@
#
#
# build a test program for each target board. Just trying to get
# build a test program for each target board. Just trying to get
# it to link is a good test, so we ignore all the errors for now.
# it to link is a good test, so we ignore all the errors for now.
#
#
# all: ${MON_CRT0} ${MON_BSP}
# all: ${MON_CRT0} ${MON_BSP}
all: ${CRT} ${SIM_BSP} ${EVA_APP_BSP} ${EVA_STUB_HEX}
all: ${CRT} ${SIM_BSP} ${EVA_APP_BSP} ${EVA_STUB_HEX}
#
#
# here's where we build the board support packages for each target
# here's where we build the board support packages for each target
#
#
${SIM_BSP}: ${OBJS} ${SIM_OBJS}
${SIM_BSP}: ${OBJS} ${SIM_OBJS}
        ${AR} ${ARFLAGS} ${SIM_BSP} ${SIM_OBJS} ${OBJS}
        ${AR} ${ARFLAGS} ${SIM_BSP} ${SIM_OBJS} ${OBJS}
        ${RANLIB} ${SIM_BSP}
        ${RANLIB} ${SIM_BSP}
${EVA_APP_BSP}: ${OBJS} ${EVA_APP_OBJS}
${EVA_APP_BSP}: ${OBJS} ${EVA_APP_OBJS}
        ${AR} ${ARFLAGS} ${EVA_APP_BSP} ${EVA_APP_OBJS} ${OBJS}
        ${AR} ${ARFLAGS} ${EVA_APP_BSP} ${EVA_APP_OBJS} ${OBJS}
        ${RANLIB} ${EVA_APP_BSP}
        ${RANLIB} ${EVA_APP_BSP}
${EVA_STUB_HEX}: ${EVA_STUB}
${EVA_STUB_HEX}: ${EVA_STUB}
        ${OBJCOPY} -O ihex $< $@
        ${OBJCOPY} -O ihex $< $@
${EVA_STUB}: ${EVA_STUB_OBJS} ${srcdir}/eva_stub.ld
${EVA_STUB}: ${EVA_STUB_OBJS} ${srcdir}/eva_stub.ld
        ${CC} -g -Os -nostartfiles -T${srcdir}/eva_stub.ld ${EVA_STUB_OBJS} -o $@
        ${CC} -g -Os -nostartfiles -T${srcdir}/eva_stub.ld ${EVA_STUB_OBJS} -o $@
#
#
# here's where we build the test programs for each target
# here's where we build the test programs for each target
#
#
.PHONY: test
.PHONY: test
test:
test:
        true
        true
#
#
#
#
#
#
.c.S:
.c.S:
        ${CC} ${CFLAGS_FOR_TARGET} -c $<
        ${CC} ${CFLAGS_FOR_TARGET} -c $<
clean mostlyclean:
clean mostlyclean:
        rm -f a.out core *.i *.o *-test *.srec *.dis *.x *.hex $(SIM_BSP) $(EVA_APP_BSP) $(EVA_STUB)
        rm -f a.out core *.i *.o *-test *.srec *.dis *.x *.hex $(SIM_BSP) $(EVA_APP_BSP) $(EVA_STUB)
distclean maintainer-clean realclean: clean
distclean maintainer-clean realclean: clean
        rm -f Makefile config.status *~
        rm -f Makefile config.status *~
.PHONY: install info install-info clean-info
.PHONY: install info install-info clean-info
install:
install:
        set -e; for x in ${SIM_BSP} ${CRT} ${EVA_APP_BSP} ${EVA_STUB_HEX} ${EVA_STUB} ; do\
        set -e; for x in ${SIM_BSP} ${CRT} ${EVA_APP_BSP} ${EVA_STUB_HEX} ${EVA_STUB} ; do\
          ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; \
          ${INSTALL_DATA} $$x $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$x; \
        done
        done
        @for script in ${SCRIPTS} ${SIM_SCRIPTS} ${EVA_APP_SCRIPTS}; do\
        @for script in ${SCRIPTS} ${SIM_SCRIPTS} ${EVA_APP_SCRIPTS}; do\
          ${INSTALL_DATA} ${srcdir}/$${script} $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$${script}; \
          ${INSTALL_DATA} ${srcdir}/$${script} $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$${script}; \
        done
        done
doc:
doc:
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
 
 

powered by: WebSVN 2.1.0

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