]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/d10v/Makefile.in
Thu Aug 1 17:05:24 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
[thirdparty/binutils-gdb.git] / sim / d10v / Makefile.in
1 # Makefile template for Configure for the SH sim library.
2 # Copyright (C) 1990, 1991, 1992, 1995 Free Software Foundation, Inc.
3 # Written by Cygnus Support.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 VPATH = @srcdir@:@srcdir@/../common:@srcdir@/../../gdb/
20 srcdir = @srcdir@
21 srcroot = $(srcdir)/../..
22
23 prefix = @prefix@
24 exec_prefix = @exec_prefix@
25
26 host_alias = @host_alias@
27 target_alias = @target_alias@
28 program_transform_name = @program_transform_name@
29 bindir = @bindir@
30
31 libdir = @libdir@
32 tooldir = $(libdir)/$(target_alias)
33
34 datadir = @datadir@
35 mandir = @mandir@
36 man1dir = $(mandir)/man1
37 man2dir = $(mandir)/man2
38 man3dir = $(mandir)/man3
39 man4dir = $(mandir)/man4
40 man5dir = $(mandir)/man5
41 man6dir = $(mandir)/man6
42 man7dir = $(mandir)/man7
43 man8dir = $(mandir)/man8
44 man9dir = $(mandir)/man9
45 infodir = @infodir@
46 includedir = @includedir@
47
48 SHELL = /bin/sh
49
50 INSTALL = $(srcroot)/install.sh -c
51 INSTALL_PROGRAM = @INSTALL_PROGRAM@
52 INSTALL_DATA = @INSTALL_DATA@
53 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
54 INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1
55
56 AR = @AR@
57 AR_FLAGS = rc
58 CC = @CC@
59 CFLAGS = @CFLAGS@
60 MAKEINFO = makeinfo
61 RANLIB = @RANLIB@
62 CC_FOR_BUILD = @CC_FOR_BUILD@
63
64 HDEFINES = @HDEFINES@
65 TDEFINES =
66
67 .NOEXPORT:
68 MAKEOVERRIDES=
69
70 X=xstuff.o
71 XL=-lX11
72 X=
73 XL=
74
75 INCDIR = $(srcdir)/../../include
76 CSEARCH = -I. -I$(srcdir) -I../../include \
77 -I../../bfd -I$(INCDIR) -I$(srcdir)/../../bfd -I$(srcdir)/../../gdb -I$(srcdir)/../../newlib/libc/sys/sh
78 DEP = mkdep
79
80 all: run
81
82 run: interp.o $(X) run.o table.o callback.o simops.o
83 $(CC) $(CFLAGS) -o run $(X) interp.o table.o callback.o simops.o run.o ../../bfd/libbfd.a ../../libiberty/libiberty.a $(XL) -lm
84
85 interp.o:interp.c table.c
86 run.o:run.c
87
88 libsim.a:interp.o table.o simops.o
89 $(AR) $(ARFLAGS) libsim.a interp.o table.o
90 $(RANLIB) libsim.a
91
92 simops.h: gencode
93 ./gencode -h >$@
94
95 table.c: gencode simops.h
96 ./gencode >$@
97
98 gencode: gencode.c
99 $(CC) $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHE) -o gencode $(srcdir)/gencode.c ../../opcodes/libopcodes.a -lc
100
101 .c.o:
102 $(CC) -c -DINSIDE_SIMULATOR $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
103
104 check:
105
106 info:
107 clean-info:
108 install-info:
109
110 tags etags: TAGS
111
112 TAGS: force
113 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
114
115 clean:
116 rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout
117 rm -f run libsim.a
118
119 distclean mostlyclean maintainer-clean realclean: clean
120 rm -f TAGS
121 rm -f Makefile config.cache config.log config.status
122
123 # Dummy target to force execution of dependent targets.
124 #
125 force:
126
127 # Copy the files into directories where they will be run.
128 install:
129 $(INSTALL_XFORM) run $(bindir)/run
130
131 install-man: run.1
132 $(INSTALL_XFORM1) $(srcdir)/run.1 $(man1dir)/run.1
133
134 Makefile: Makefile.in config.status
135 $(SHELL) ./config.status
136
137 config.status: configure
138 $(SHELL) ./config.status --recheck
139
140 dep: $(CFILES)
141 mkdep $(CFLAGS) $?
142
143 # What appears below is generated by a hacked mkdep using gcc -MM.
144
145 # DO NOT DELETE THIS LINE -- mkdep uses it.
146 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
147
148
149 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY