* Makefile.in: Delete stuff moved to ../common/Make-common.in.
[deliverable/binutils-gdb.git] / sim / h8300 / Makefile.in
CommitLineData
1ffd292b
C
1# Makefile template for Configure for the h8300 sim library.
2# Copyright (C) 1990, 1991, 1992, 1995 Free Software Foundation, Inc.
a154eea7
SC
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
0743b4ac 17# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
a154eea7 18
1ffd292b
C
19VPATH = @srcdir@
20srcdir = @srcdir@
21srcroot = $(srcdir)/../..
a154eea7 22
1ffd292b
C
23prefix = @prefix@
24exec_prefix = @exec_prefix@
a154eea7 25
1ffd292b
C
26host_alias = @host_alias@
27target_alias = @target_alias@
28program_transform_name = @program_transform_name@
a154eea7
SC
29bindir = $(exec_prefix)/bin
30libdir = $(exec_prefix)/lib
1ffd292b 31tooldir = $(libdir)/$(target_alias)
a154eea7
SC
32
33datadir = $(prefix)/lib
34mandir = $(prefix)/man
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 = $(prefix)/info
45includedir = $(prefix)/include
1ffd292b 46docdir = $(datadir)/doc
a154eea7
SC
47
48SHELL = /bin/sh
49
1ffd292b 50INSTALL = $(srcroot)/install.sh -c
a154eea7
SC
51INSTALL_PROGRAM = $(INSTALL)
52INSTALL_DATA = $(INSTALL)
1ffd292b
C
53INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
54INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1
a154eea7 55
0743b4ac 56AR = @AR@
1ffd292b 57AR_FLAGS = rc
0743b4ac
ILT
58CC = @CC@
59CFLAGS = @CFLAGS@
a154eea7
SC
60BISON = bison
61MAKEINFO = makeinfo
0743b4ac
ILT
62RANLIB = @RANLIB@
63
64HDEFINES = @HDEFINES@
65TDEFINES =
a154eea7 66
1ffd292b
C
67.NOEXPORT:
68MAKEOVERRIDES=
69
b0c9f026 70INCDIR = $(srcdir)/../../include
1ffd292b 71CSEARCH = -I. -I$(srcdir) -I$(INCDIR) -I../../bfd -I$(srcdir)/../../bfd -I$(srcdir)/../../gdb
a154eea7
SC
72DEP = mkdep
73
1ffd292b 74all: run
a154eea7 75
1ffd292b
C
76run: compile.o run.o
77 $(CC) -o run compile.o run.o ../../bfd/libbfd.a ../../libiberty/libiberty.a
a154eea7 78
0743b4ac
ILT
79compile.o: compile.c config.h
80run.o: run.c config.h
a154eea7
SC
81
82.c.o:
83 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
84
a154eea7
SC
85check:
86
87info:
88clean-info:
89install-info:
90
a154eea7
SC
91tags etags: TAGS
92
93TAGS: force
94 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
95
0743b4ac 96mostlyclean clean:
a154eea7 97 rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout
0743b4ac 98 rm -f run config.log
a154eea7 99
0743b4ac 100distclean realclean: clean
1ffd292b 101 rm -f TAGS
0743b4ac 102 rm -f Makefile config.log config.cache config.status config.h stamp-h
a154eea7
SC
103
104# Dummy target to force execution of dependent targets.
105#
106force:
107
1ffd292b 108# Copy the files into directories where they will be run.
a154eea7 109install:
fe7ec1d0 110 $(INSTALL_XFORM) run $(bindir)/run
1ffd292b 111
0743b4ac
ILT
112Makefile: Makefile.in config.status
113 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
114
115config.h: stamp-h ; @true
116stamp-h: config.in config.status
117 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
a154eea7 118
1ffd292b
C
119config.status: configure
120 $(SHELL) ./config.status --recheck
121
a154eea7
SC
122dep: $(CFILES)
123 mkdep $(CFLAGS) $?
124
a154eea7
SC
125# What appears below is generated by a hacked mkdep using gcc -MM.
126
127# DO NOT DELETE THIS LINE -- mkdep uses it.
128# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
129
130
131# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.148865 seconds and 4 git commands to generate.