]> Git Repo - binutils.git/blame_incremental - sim/Makefile.in
* simops.c: Add logicals, mov, movhi, movea, add, addi, sub
[binutils.git] / sim / Makefile.in
... / ...
CommitLineData
1# Makefile template for Configure for the sim library.
2# Copyright (C) 1993, 1995 Free Software Foundation, Inc.
3# Written by Cygnus Support.
4#
5# This file is part of BFD, the Binary File Descriptor library.
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21VPATH = @srcdir@
22srcdir = @srcdir@
23srcroot = $(srcdir)/..
24
25prefix = @prefix@
26exec_prefix = @exec_prefix@
27
28host_alias = @host_alias@
29target_alias = @target_alias@
30program_transform_name = @program_transform_name@
31bindir = $(exec_prefix)/bin
32libdir = $(exec_prefix)/lib
33tooldir = $(libdir)/$(target_alias)
34
35datadir = $(prefix)/lib
36mandir = $(prefix)/man
37man1dir = $(mandir)/man1
38man2dir = $(mandir)/man2
39man3dir = $(mandir)/man3
40man4dir = $(mandir)/man4
41man5dir = $(mandir)/man5
42man6dir = $(mandir)/man6
43man7dir = $(mandir)/man7
44man8dir = $(mandir)/man8
45man9dir = $(mandir)/man9
46infodir = $(prefix)/info
47includedir = $(prefix)/include
48docdir = $(datadir)/doc
49
50SHELL = /bin/sh
51
52# FIXME: Use autoconf's AC_PROG_INSTALL
53INSTALL = $${srcroot}/../install.sh -c
54INSTALL_PROGRAM = $(INSTALL)
55INSTALL_DATA = $(INSTALL)
56INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
57INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1
58
59AR = @AR@
60AR_FLAGS = rc
61CC = @CC@
62CFLAGS = @CFLAGS@
63CC_FOR_BUILD = @CC_FOR_BUILD@
64MAKEINFO = makeinfo
65RANLIB = @RANLIB@
66
67SUBDIRS = @subdirs@
68
69.NOEXPORT:
70MAKEOVERRIDES=
71
72
73INCDIR = $(srcdir)/../include
74CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
75DEP = mkdep
76
77# compilers to use to create programs which must be run in the build
78# environment.
79CC_FOR_BUILD = $(CC)
80
81#### Makefile fragments come in here.
82# @target_makefile_frag@
83###
84
85FLAGS_TO_PASS = \
86 "prefix=$(prefix)" \
87 "exec_prefix=$(exec_prefix)" \
88 "against=$(against)" \
89 "AR=$(AR)" \
90 "AR_FLAGS=$(AR_FLAGS)" \
91 "CC=$(CC)" \
92 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
93 "CFLAGS=$(CFLAGS)" \
94 "RANLIB=$(RANLIB)" \
95 "MAKEINFO=$(MAKEINFO)" \
96 "INSTALL=$(INSTALL)" \
97 "INSTALL_DATA=$(INSTALL_DATA)" \
98 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)"
99
100all:
101 @rootme=`pwd` ; export rootme ; \
102 srcroot=`cd $(srcdir); pwd`; export srcroot; \
103 for dir in . ${SUBDIRS}; do \
104 if [ "$$dir" = "." ]; then \
105 true; \
106 elif [ -d $$dir ]; then \
107 (cd $$dir; $(MAKE) $(FLAGS_TO_PASS)); \
108 else true; fi; \
109 done
110
111clean mostlyclean:
112 @rootme=`pwd` ; export rootme ; \
113 srcroot=`cd $(srcdir); pwd`; export srcroot; \
114 for dir in . ${SUBDIRS}; do \
115 if [ "$$dir" = "." ]; then \
116 true; \
117 elif [ -d $$dir ]; then \
118 (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \
119 else true; fi; \
120 done
121
122distclean maintainer-clean realclean:
123 @rootme=`pwd` ; export rootme ; \
124 srcroot=`cd $(srcdir); pwd`; export srcroot; \
125 for dir in . ${SUBDIRS}; do \
126 if [ "$$dir" = "." ]; then \
127 true; \
128 elif [ -d $$dir ]; then \
129 (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \
130 else true; fi; \
131 done
132 rm -f Makefile config.cache config.log config.status
133
134install:
135 @rootme=`pwd` ; export rootme ; \
136 srcroot=`cd $(srcdir); pwd`; export srcroot; \
137 for dir in . ${SUBDIRS}; do \
138 if [ "$$dir" = "." ]; then \
139 true;
140 elif [ -d $$dir ]; then \
141 (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install); \
142 else true; fi; \
143 done
144
145info:
146install-info:
147dvi:
148
149###
150###
151
152.PHONY: check installcheck
153check:
154installcheck:
155
156TAGS:
157
158force:
159
160Makefile: Makefile.in config.status
161 $(SHELL) ./config.status
162
163config.status: configure
164 $(SHELL) ./config.status --recheck
This page took 0.023781 seconds and 4 git commands to generate.