2015-10-23 20:24:06 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
DESTDIR =
|
|
|
|
VPATH = @srcdir@ @srcdir@/..
|
|
|
|
srcdir = @srcdir@
|
|
|
|
objdir = .
|
|
|
|
srcroot = $(srcdir)/../..
|
|
|
|
objroot = $(objdir)/../..
|
|
|
|
mkinstalldirs = $(SHELL) $(srcroot)/mkinstalldirs
|
|
|
|
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
|
|
|
|
host_alias = @host_alias@
|
|
|
|
target_alias = @target_alias@
|
|
|
|
|
|
|
|
bindir = @bindir@
|
|
|
|
libdir = @libdir@
|
|
|
|
tooldir = $(exec_prefix)/$(target_alias)
|
|
|
|
|
|
|
|
objtype = @objtype@
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
|
|
|
# Multilib support variables.
|
|
|
|
# TOP is used instead of MULTI{BUILD,SRC}TOP.
|
|
|
|
MULTIDIRS =
|
|
|
|
MULTISUBDIR =
|
|
|
|
MULTIDO = true
|
|
|
|
MULTICLEAN = true
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
|
|
|
CC = @CC@
|
|
|
|
|
|
|
|
AS = @AS@
|
|
|
|
AR = @AR@
|
|
|
|
LD = @LD@
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
|
|
|
|
OBJDUMP = `if [ -f ${objroot}/../binutils/objdump ] ; \
|
|
|
|
then echo ${objroot}/../binutils/objdump ; \
|
|
|
|
else t='$(program_transform_name)'; echo objdump | sed -e $$t ; fi`
|
|
|
|
OBJCOPY = `if [ -f ${objroot}/../binutils/objcopy ] ; \
|
|
|
|
then echo ${objroot}/../binutils/objcopy ; \
|
|
|
|
else t='$(program_transform_name)'; echo objcopy | sed -e $$t ; fi`
|
|
|
|
|
2017-05-23 15:05:48 +02:00
|
|
|
CRT0 = gcrt0.o crt0.o
|
2015-10-23 20:24:06 +02:00
|
|
|
CRT0_INSTALL = install-crt0
|
|
|
|
|
|
|
|
NSIM_BSP = libnsim.a
|
|
|
|
NSIM_OBJS = \
|
2017-05-23 15:05:48 +02:00
|
|
|
libcfunc.o \
|
|
|
|
nsim-syscalls.o \
|
|
|
|
sbrk.o \
|
|
|
|
mcount.o
|
2015-10-23 20:24:06 +02:00
|
|
|
NSIM_INSTALL = install-nsim
|
|
|
|
NSIM_SCRIPTS = nsim.specs
|
|
|
|
|
2016-04-29 21:14:51 +02:00
|
|
|
NANO_SCRIPTS = nano.specs
|
|
|
|
NANO_INSTALL = install-nano
|
|
|
|
|
2015-10-23 20:24:06 +02:00
|
|
|
CFLAGS = -g
|
|
|
|
|
|
|
|
# Host specific makefile fragment comes in here.
|
|
|
|
@host_makefile_frag@
|
|
|
|
|
|
|
|
all: $(CRT0) $(NSIM_BSP)
|
|
|
|
|
|
|
|
$(NSIM_BSP): $(NSIM_OBJS)
|
|
|
|
$(AR) $(ARFLAGS) $@ $?
|
|
|
|
$(RANLIB) $@
|
|
|
|
|
|
|
|
libcfunc.o: libcfunc.c
|
|
|
|
nsim-syscalls.o: nsim-syscalls.c
|
|
|
|
sbrk.o: sbrk.c
|
2017-05-23 15:05:48 +02:00
|
|
|
mcount.o: mcount.c
|
|
|
|
gcrt0.o: gcrt0.S crt0.S
|
|
|
|
crt0.o: crt0.S
|
2015-10-23 20:24:06 +02:00
|
|
|
|
|
|
|
clean mostlyclean:
|
|
|
|
rm -f *.o *.a
|
|
|
|
|
|
|
|
distclean maintainer-clean realclean: clean
|
|
|
|
rm -f Makefile config.status config.log config.cache *~
|
|
|
|
|
|
|
|
.PHONY: install info install-info clean-info doc dvi
|
2016-04-29 21:14:51 +02:00
|
|
|
install: $(CRT0_INSTALL) $(NSIM_INSTALL) $(NANO_INSTALL)
|
2015-10-23 20:24:06 +02:00
|
|
|
|
|
|
|
# multilibdir may not exist yet - libgcc for ARC depends on libc, hence
|
|
|
|
# newlib/libgloss is built before libgcc. And in parallel build libgloss maybe
|
|
|
|
# built and installed before newlib, therefore libgloss has to create target
|
|
|
|
# directory.
|
|
|
|
|
|
|
|
$(CRT0_INSTALL):
|
|
|
|
$(mkinstalldirs) $(DESTDIR)${tooldir}/lib${MULTISUBDIR}
|
2017-05-23 15:05:48 +02:00
|
|
|
for c in $(CRT0); do \
|
|
|
|
b=`basename $$c`; \
|
|
|
|
${INSTALL_DATA} $$c $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$$b ;\
|
|
|
|
done
|
2015-10-23 20:24:06 +02:00
|
|
|
|
|
|
|
$(NSIM_INSTALL):
|
|
|
|
$(mkinstalldirs) $(DESTDIR)${tooldir}/lib${MULTISUBDIR}
|
|
|
|
$(INSTALL_DATA) $(NSIM_BSP) $(DESTDIR)$(tooldir)/lib$(MULTISUBDIR)/$(NSIM_BSP)
|
|
|
|
for x in $(NSIM_SCRIPTS); do \
|
|
|
|
$(INSTALL_DATA) $(srcdir)/$$x $(DESTDIR)$(tooldir)/lib$(MULTISUBDIR)/$$x; done
|
|
|
|
|
2016-04-29 21:14:51 +02:00
|
|
|
$(NANO_INSTALL):
|
2016-05-05 18:02:29 +02:00
|
|
|
$(mkinstalldirs) $(DESTDIR)${tooldir}/lib${MULTISUBDIR}
|
|
|
|
for x in $(NANO_SCRIPTS); do \
|
|
|
|
$(INSTALL_DATA) $(srcdir)/$$x $(DESTDIR)$(tooldir)/lib$(MULTISUBDIR)/$$x; done
|
2016-04-29 21:14:51 +02:00
|
|
|
|
2015-10-23 20:24:06 +02:00
|
|
|
doc:
|
|
|
|
info:
|
|
|
|
dvi:
|
|
|
|
install-info:
|
|
|
|
clean-info:
|
|
|
|
|
|
|
|
Makefile: Makefile.in config.status @host_makefile_frag_path@
|
|
|
|
$(SHELL) config.status
|
|
|
|
|
|
|
|
config.status: configure
|
|
|
|
$(SHELL) config.status --recheck
|