]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/h8300/Makefile.in
* configure.in: Call AC_CONFIG_HEADER. Don't try to use
[thirdparty/binutils-gdb.git] / sim / h8300 / Makefile.in
1 # Makefile template for Configure for the h8300 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@
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 = $(exec_prefix)/bin
30 libdir = $(exec_prefix)/lib
31 tooldir = $(libdir)/$(target_alias)
32
33 datadir = $(prefix)/lib
34 mandir = $(prefix)/man
35 man1dir = $(mandir)/man1
36 man2dir = $(mandir)/man2
37 man3dir = $(mandir)/man3
38 man4dir = $(mandir)/man4
39 man5dir = $(mandir)/man5
40 man6dir = $(mandir)/man6
41 man7dir = $(mandir)/man7
42 man8dir = $(mandir)/man8
43 man9dir = $(mandir)/man9
44 infodir = $(prefix)/info
45 includedir = $(prefix)/include
46 docdir = $(datadir)/doc
47
48 SHELL = /bin/sh
49
50 # FIXME: use autoconf's AC_PROG_INSTALL
51 INSTALL = $(srcroot)/install.sh -c
52 INSTALL_PROGRAM = $(INSTALL)
53 INSTALL_DATA = $(INSTALL)
54 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
55 INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1
56
57 AR = @AR@
58 AR_FLAGS = rc
59 CC = @CC@
60 CFLAGS = @CFLAGS@
61 BISON = bison
62 MAKEINFO = makeinfo
63 RANLIB = @RANLIB@
64
65 HDEFINES = @HDEFINES@
66 TDEFINES =
67
68 .NOEXPORT:
69 MAKEOVERRIDES=
70
71 INCDIR = $(srcdir)/../../include
72 CSEARCH = -I. -I$(srcdir) -I$(INCDIR) -I../../bfd -I$(srcdir)/../../bfd -I$(srcdir)/../../gdb
73 DEP = mkdep
74
75 all: run
76
77 run: compile.o run.o
78 $(CC) -o run compile.o run.o ../../bfd/libbfd.a ../../libiberty/libiberty.a
79
80 compile.o: compile.c config.h
81 run.o: run.c config.h
82
83 .c.o:
84 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
85
86 check:
87
88 info:
89 clean-info:
90 install-info:
91
92 tags etags: TAGS
93
94 TAGS: force
95 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
96
97 mostlyclean clean:
98 rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout
99 rm -f run config.log
100
101 distclean realclean: clean
102 rm -f TAGS
103 rm -f Makefile config.log config.cache config.status config.h stamp-h
104
105 # Dummy target to force execution of dependent targets.
106 #
107 force:
108
109 # Copy the files into directories where they will be run.
110 install:
111 srcroot=`cd $(srcroot); pwd`; export srcroot; \
112 $(INSTALL_XFORM) run $(bindir)/run ; \
113 n=`t='$(program_transform_name)'; echo run | sed -e "" $$t`; \
114 if [ -d $(tooldir) ] ; then \
115 if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
116 rm -f $(tooldir)/bin/run; \
117 ln $(bindir)/$$n $(tooldir)/bin/run \
118 || $(INSTALL_PROGRAM) run $(tooldir)/bin/run; \
119 else true; fi
120
121
122 Makefile: Makefile.in config.status
123 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
124
125 config.h: stamp-h ; @true
126 stamp-h: config.in config.status
127 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
128
129 config.status: configure
130 $(SHELL) ./config.status --recheck
131
132 dep: $(CFILES)
133 mkdep $(CFLAGS) $?
134
135 # What appears below is generated by a hacked mkdep using gcc -MM.
136
137 # DO NOT DELETE THIS LINE -- mkdep uses it.
138 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
139
140
141 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY