56becf84478cb0f7843c4d2fb9501bc20a362af1
[deliverable/binutils-gdb.git] / sim / d10v / Makefile.in
1 # Makefile template for Configure for the SH sim library.
2 # Copyright (C) 1996 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 default: all
20
21 VPATH = @srcdir@
22 srcdir = @srcdir@
23 srcroot = $(srcdir)/../..
24
25 prefix = @prefix@
26 exec_prefix = @exec_prefix@
27
28 host_alias = @host_alias@
29 target_alias = @target_alias@
30 program_transform_name = @program_transform_name@
31 bindir = @bindir@
32
33 libdir = @libdir@
34 tooldir = $(libdir)/$(target_alias)
35
36 datadir = @datadir@
37 mandir = @mandir@
38 man1dir = $(mandir)/man1
39 man2dir = $(mandir)/man2
40 man3dir = $(mandir)/man3
41 man4dir = $(mandir)/man4
42 man5dir = $(mandir)/man5
43 man6dir = $(mandir)/man6
44 man7dir = $(mandir)/man7
45 man8dir = $(mandir)/man8
46 man9dir = $(mandir)/man9
47 infodir = @infodir@
48 includedir = @includedir@
49
50 SHELL = /bin/sh
51
52 INSTALL = $(srcroot)/install.sh -c
53 INSTALL_PROGRAM = @INSTALL_PROGRAM@
54 INSTALL_DATA = @INSTALL_DATA@
55 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
56 INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1
57
58 AR = @AR@
59 AR_FLAGS = rc
60 CC = @CC@
61 CC_FOR_BUILD = @CC_FOR_BUILD@
62 CFLAGS = @CFLAGS@
63 SIM_CFLAGS = @sim_cflags@
64 CONFIG_CFLAGS = @DEFS@ $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DINSIDE_SIMULATOR
65 BUILD_CFLAGS = -g -O $(CSEARCH)
66 MAKEINFO = makeinfo
67 RANLIB = @RANLIB@
68
69 HDEFINES = @HDEFINES@
70 TDEFINES =
71
72 .NOEXPORT:
73 MAKEOVERRIDES=
74
75 #X=xstuff.o
76 #X_LIB=-lX11
77 X=
78 X_LIB=
79 MATH_LIB=
80
81
82 INCLUDE = d10v_sim.h $(srcdir)/../../gdb/callback.h
83 INCDIR = $(srcdir)/../../include
84 CSEARCH = -I. -I$(srcdir) -I../../include \
85 -I../../bfd -I$(INCDIR) -I$(srcdir)/../../bfd -I$(srcdir)/../../gdb -I$(srcdir)/../../newlib/libc/sys/d10v \
86 -I$(srcdir)/opcodes
87 DEP = mkdep
88
89 LIBIBERTY_LIB = ../../libiberty/libiberty.a
90 BFD_LIB = ../../bfd/libbfd.a
91
92 all: run libsim.a
93
94 run: interp.o $(X) run.o table.o callback.o simops.o
95 $(CC) $(CFLAGS) $(CONFIG_CFLAGS) -o run $(X) interp.o table.o callback.o simops.o run.o \
96 $(BFD_LIB) $(LIBIBERTY_LIB) $(X_LIB) $(MATH_LIB)
97
98 interp.o:interp.c table.c $(INCLUDE)
99 run.o: $(srcdir)/../common/run.c $(INCLUDE)
100 $(CC) -c $(CFLAGS) $(CONFIG_CFLAGS) $<
101
102 simops.o: simops.c $(INCLUDE)
103 callback.o: $(srcdir)/../../gdb/callback.c $(INCLUDE)
104 $(CC) -c $(CFLAGS) $(CONFIG_CFLAGS) $<
105
106 libsim.a:interp.o table.o simops.o
107 $(AR) $(ARFLAGS) libsim.a interp.o table.o simops.o
108 $(RANLIB) libsim.a
109
110 simops.h: gencode
111 ./gencode -h >$@
112
113 table.c: gencode simops.h
114 ./gencode >$@
115
116 gencode.o: gencode.c $(INCLUDE)
117 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
118
119 d10v-opc.o: $(srcdir)/../../opcodes/d10v-opc.c
120 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/../../opcodes/d10v-opc.c
121
122 gencode: gencode.o d10v-opc.o
123 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o d10v-opc.o $(BUILD_LIB)
124
125 .c.o:
126 $(CC) -c $(CFLAGS) $(CONFIG_CFLAGS) $<
127
128 check:
129
130 info:
131 clean-info:
132 install-info:
133
134 tags etags: TAGS
135
136 TAGS: force
137 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
138
139 clean:
140 rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout
141 rm -f run table.c simops.h gencode libsim.a
142
143 distclean mostlyclean maintainer-clean realclean: clean
144 rm -f TAGS
145 rm -f Makefile config.cache config.log config.status
146
147 # Dummy target to force execution of dependent targets.
148 #
149 force:
150
151 # Copy the files into directories where they will be run.
152 install:
153 $(INSTALL_XFORM) run $(bindir)/run
154
155 install-man: run.1
156 $(INSTALL_XFORM1) $(srcdir)/run.1 $(man1dir)/run.1
157
158 Makefile: Makefile.in config.status
159 $(SHELL) ./config.status
160
161 config.status: configure
162 $(SHELL) ./config.status --recheck
163
164 dep: $(CFILES)
165 mkdep $(CFLAGS) $?
166
167 # What appears below is generated by a hacked mkdep using gcc -MM.
168
169 # DO NOT DELETE THIS LINE -- mkdep uses it.
170 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
171
172
173 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.036873 seconds and 4 git commands to generate.