]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/common/Makefile.in
sim/
[thirdparty/binutils-gdb.git] / sim / common / Makefile.in
CommitLineData
c906108c 1# Makefile template for Configure for simulator common directory
e4d013fc 2# Copyright (C) 1996, 1997, 2007, 2008, 2009 Free Software Foundation, Inc.
c906108c
SS
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
4744ac1b 6# the Free Software Foundation; either version 3 of the License, or
c906108c 7# (at your option) any later version.
4744ac1b 8#
c906108c
SS
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
4744ac1b 13#
c906108c 14# You should have received a copy of the GNU General Public License
4744ac1b 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
16
17default: all
18
19VPATH = @srcdir@
20srcdir = @srcdir@
21srcroot = $(srcdir)/../..
22
23prefix = @prefix@
24exec_prefix = @exec_prefix@
25
26host_alias = @host_alias@
27target_alias = @target_alias@
28program_transform_name = @program_transform_name@
29bindir = @bindir@
30
31libdir = @libdir@
32tooldir = $(libdir)/$(target_alias)
33
96e946ca 34datarootdir = @datarootdir@
c906108c
SS
35datadir = @datadir@
36mandir = @mandir@
37man1dir = $(mandir)/man1
38infodir = @infodir@
39includedir = @includedir@
40
41SHELL = /bin/sh
42
43INSTALL = @INSTALL@
44INSTALL_PROGRAM = @INSTALL_PROGRAM@
45INSTALL_DATA = @INSTALL_DATA@
46
47CC = @CC@
48CC_FOR_BUILD = @CC_FOR_BUILD@
49CFLAGS = @CFLAGS@
50SIM_CFLAGS = @sim_cflags@
51
52# These are used to rebuild nltvals.def.
53CPP_FOR_TARGET = @CPP_FOR_TARGET@
54TARGET_SUBDIR = @TARGET_SUBDIR@
55
56HDEFINES = @HDEFINES@
57TDEFINES =
58
59CONFIG_CFLAGS = @DEFS@ $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES)
60CSEARCH = -I. -I$(srcdir) -I$(srcroot)/include
61ALL_CFLAGS = $(CFLAGS) $(CONFIG_CFLAGS) $(CSEARCH)
62BUILD_CFLAGS = -g -O $(CSEARCH)
63
64AR = @AR@
65AR_FLAGS = rc
66RANLIB = @RANLIB@
67MAKEINFO = makeinfo
68
69.NOEXPORT:
70MAKEOVERRIDES=
71
72all:
73
46a19b74 74# Generate nltvals.def for newlib/libgloss using devo and build tree.
c906108c 75# This file is shipped with distributions so we build in the source dir.
c906108c 76# Use `make headers' to rebuild.
46a19b74
AC
77# Note: If gdb releases begin to contain target header files (not a good idea,
78# but if they did ...), targ-vals.def coud be generated at build time.
79# An alternative is to slurp in the tables at runtime.
c906108c 80.PHONY: headers
46a19b74 81headers:
c906108c
SS
82 rootme=`pwd` ; \
83 cd $(srcdir) ; \
84 rm -f nltvals.new ; \
85 $(SHELL) $(srcdir)/gennltvals.sh $(SHELL) $(srcroot) "$(CPP_FOR_TARGET)" > nltvals.new ; \
86 $(SHELL) $(srcroot)/move-if-change nltvals.new nltvals.def
87
88.c.o:
89 $(CC) -c $< $(ALL_CFLAGS)
90
91check:
92
93info:
94clean-info:
95install-info:
96
97tags etags: TAGS
98
99# Macros like EXTERN_SIM_CORE confuse tags.
100# And the sim-n-foo.h files create functions that can't be found either.
101TAGS: force
102 cd $(srcdir) && \
adf40b2e
JM
103 etags --regex '/^\([a-z_]+\) (/\1/' --regex '/^.*\/[*] TAGS: .*/' \
104 *.c *.h
c906108c
SS
105
106clean:
107 rm -f *.[oa] *~ core
c906108c
SS
108
109distclean mostlyclean maintainer-clean realclean: clean
110 rm -f TAGS
111 rm -f Makefile config.cache config.log config.status
ab42ee12 112 rm -f cconfig.h config.h stamp-h
c906108c
SS
113
114# Dummy target to force execution of dependent targets.
115force:
116
117# Copy the files into directories where they will be run.
fab307a2 118install: install-man
c906108c
SS
119
120install-man: installdirs
121 n=`echo run | sed '$(program_transform_name)'`; \
5a645dc5 122 $(INSTALL_DATA) $(srcdir)/run.1 $(DESTDIR)$(man1dir)/$$n.1
c906108c
SS
123
124installdirs:
5a645dc5 125 $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(man1dir)
c906108c
SS
126
127Makefile: Makefile.in config.status
128 $(SHELL) ./config.status
129
130config.status: configure
131 $(SHELL) ./config.status --recheck
132
133config.h: stamp-h ; @true
134stamp-h: config.in config.status
135 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status