P
[deliverable/binutils-gdb.git] / sim / w65 / Makefile.in
CommitLineData
c906108c
SS
1# Makefile for GNU binary-file utilities
2# Copyright (C) 1992, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
3
4# This file is part of GNU binutils.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20VPATH = @srcdir@
21srcdir = @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@
30libdir = @libdir@
31tooldir = $(exec_prefix)/$(target_alias)
32
33datadir = @datadir@
34mandir = @mandir@
35man1dir = $(mandir)/man1
36man2dir = $(mandir)/man2
37man3dir = $(mandir)/man3
38man4dir = $(mandir)/man4
39man5dir = $(mandir)/man5
40man6dir = $(mandir)/man6
41man7dir = $(mandir)/man7
42man8dir = $(mandir)/man8
43man9dir = $(mandir)/man9
44infodir = @infodir@
45includedir = @includedir@
46
47# This can be referenced by the gettext configuration code.
48top_builddir = ..
49
50SHELL = /bin/sh
51
52INSTALL = @INSTALL@
53INSTALL_PROGRAM = @INSTALL_PROGRAM@
54INSTALL_DATA = @INSTALL_DATA@
55
56AR = @AR@
57AR_FLAGS = qv
58CC = @CC@
59CFLAGS = @CFLAGS@
60MAKEINFO = makeinfo
61TEXI2DVI = texi2dvi
62RANLIB = @RANLIB@
63TEXI2ROFF=texi2roff
64MAKEOVERRIDES=
65CC_FOR_BUILD = @CC_FOR_BUILD@
66
67HDEFINES = @HDEFINES@
68TDEFINES =
69
70# Comment these out if using lex.
71# Distribution version
72
73# Distribution name
74
75# Where to find texinfo.tex to format docn with TeX
76TEXIDIR = $(srcdir)/../texinfo
77
78# These should all be the same program too.
79RUN_PROG=run
80SIM_LIB=libsim.a
81ADDL_LIBS=
82
83PROGS = $(RUN_PROG)
84LIBS= $(SIM_LIB)
85
86DISTSTUFF = $(PROGS) $(LIBS)
87
88BASEDIR = $(srcdir)/../..
89BFDDIR = $(BASEDIR)/bfd
90INCDIR = $(BASEDIR)/include
91GDBDIR = $(BASEDIR)/gdb
92INCLUDES = -I. -I$(srcdir) -I../../bfd -I$(BFDDIR) -I$(INCDIR) -I$(GDBDIR)
93
94#### host and target dependant Makefile fragments come in here.
95###
96
97ALL_CFLAGS = $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS)
98
99.c.o:
100 $(CC) -c $(ALL_CFLAGS) $<
101
102LIBIBERTY = ../../libiberty/libiberty.a
103
104BFD = ../../bfd/libbfd.a
105
106INTLLIBS = @INTLLIBS@
107INTLDEPS = @INTLDEPS@
108
109RUNTEST = runtest
110RUNTESTFLAGS =
111FLAGS_TO_PASS = \
112 "CC=$(CC)" \
113 "CFLAGS=$(CFLAGS)" \
114 "RUNTEST=$(RUNTEST)" \
115 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
116
117#\f
118## The rules
119
120all: $(LIBS) $(PROGS)
121
122
123$(RUN_PROG): $(LIBS) run.o $(BFD) $(INTLDEPS)
124 $(CC) $(CFLAGS) $(LDFLAGS) -o $(RUN_PROG) run.o $(SIM_LIB) $(BFD) $(INTLLIBS) $(LIBIBERTY)
125
126$(SIM_LIB): case.o interp.o
127 rm -f $(SIM_LIB)
128 $(AR) $(AR_FLAGS) $(SIM_LIB) case.o interp.o
129 $(RANLIB) $(SIM_LIB)
130
131case.c: gencode
132 ./gencode -c >case.c ; \
133 if [ -x /usr/latest/bin/indent ] ; then \
134 /usr/latest/bin/indent case.c ; \
135 fi
136
137optable:gencode
138 ./gencode >optable
139 ./gencode -a >$(srcdir)/../../opcodes/w65-opc.h
140
141gencode:gencode.c
142 $(CC_FOR_BUILD) -o gencode $<
143
144run.o:run.c config.h
145interp.o:interp.c config.h
146
147
148######################################################################
149
150mostlyclean:
151 -rm -f *.o *~ \#* core binutils.?? binutils.??? case.c
152
153clean: mostlyclean
154 -rm -f $(PROGS) *.o *.a
155
156distclean:
157 -rm -f Makefile config.status sysdep.h *.o *~ \#* core y.* \
158 binutils.?? binutils.??s binutils.aux binutils.log \
159 binutils.toc gencode run config.log
160 -rm -f $(PROGS) config.h stamp-h
161
162maintainer-clean realclean: clean distclean
163 -rm -f $(DISTSTUFF) TAGS
164
165etags tags: TAGS
166
167TAGS: force
168 etags $(INCDIR)/*.h $(srcdir)/*.[hc]
169
170install: all installdirs
171 for i in $(PROGS) ; do \
172 n=`echo $$i | sed -e 's/.new//' | sed '$(program_transform_name)'`; \
173 $(INSTALL_PROGRAM) $$i $(bindir)/$$n; \
174 done
175
176installdirs:
177 $(SHELL) $(srcdir)/../../mkinstalldirs $(bindir)
178
179install-info:
180
181clean-info:
182 -rm -rf *.info*
183
184# Making a dist:
185# cvs rtag binutils-x-yy ld+utils
186# cvs co -r binutils-x-yy ld+utils
187# cd {HERE}; make dist [-f Makefile.in]
188
189dist: $(DIST_NAME).tar.z
190
191diststuff: $(DISTSTUFF)
192
193$(DIST_NAME).tar.z:
194 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
195 make diststuff -f Makefile.in
196 cd ../ld; make diststuff -f Makefile.in
197 cd ../gprof; make diststuff -f Makefile.in
198 cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
199 # Take out texinfo from configurable dirs
200 mv ../configure.in tmp; \
201 sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
202 cd ..; chmod og=u `find . -print`
203 cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
204 rm -rf ../../$(DIST_NAME)
205
206
207# Dummy target to force execution of dependent targets.
208#
209force:
210
211# Target to uncomment host-specific lines in this makefile. Such lines must
212# have the following string beginning in column 1: #__<hostname>__#
213# Original Makefile is backed up as 'Makefile.old'.
214#
215# Invoke with: make make HOST=xxx
216#
217make:
218 -@if test $(HOST)x = x ; then \
219 echo '\aSpecify "make make HOST=???"'; \
220 exit 1; \
221 fi ; \
222 grep -s "^#The next line was generated by 'make make'" Makefile; \
223 if test $$? = 0 ; then \
224 echo "\aMakefile has already been processed with 'make make'";\
225 exit 1; \
226 fi ; \
227 mv -f Makefile Makefile.old; \
228 echo "#The next line was generated by 'make make'" >Makefile ; \
229 echo "HOST=$(HOST)" >>Makefile ; \
230 echo >>Makefile ; \
231 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
232
233Makefile: Makefile.in config.status
234 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
235
236config.h: stamp-h ; @true
237stamp-h: config.in config.status
238 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
239
240config.status: configure
241 $(SHELL) ./config.status --recheck
242
243### Local Variables: ***
244### mode:fundamental ***
245### page-delimiter: "^#\f" ***
246### End: ***
247### end of file
This page took 0.033014 seconds and 4 git commands to generate.