Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.in « arc « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d14bcea3e4e7b9e9733987ba0d565efd5281a8e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#
#
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`

CRT0		= crt0.o
CRT0_INSTALL	= install-crt0

NSIM_BSP = libnsim.a
NSIM_OBJS = \
	    libcfunc.o \
	    nsim-syscalls.o \
	    sbrk.o
NSIM_INSTALL = install-nsim
NSIM_SCRIPTS = nsim.specs

NANO_SCRIPTS = nano.specs
NANO_INSTALL = install-nano

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

#
$(CRT0): crt0.S

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
install: $(CRT0_INSTALL) $(NSIM_INSTALL) $(NANO_INSTALL)

# 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}
	${INSTALL_DATA} ${CRT0} $(DESTDIR)${tooldir}/lib${MULTISUBDIR}/$(CRT0)

$(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

$(NANO_INSTALL):
        $(mkinstalldirs) $(DESTDIR)${tooldir}/lib${MULTISUBDIR}
        for x in $(NANO_SCRIPTS); do \
            $(INSTALL_DATA) $(srcdir)/$$x $(DESTDIR)$(tooldir)/lib$(MULTISUBDIR)/$$x; done

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