* p{1,3}.c (sim_resume): when running on dos, any character typed to
[deliverable/binutils-gdb.git] / sim / h8300 / Makefile.in
CommitLineData
a154eea7
SC
1# Makefile template for Configure for the h8300sim library.
2# Copyright (C) 1990, 1991, 1992 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., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19srcdir = .
20
21prefix = /usr/local
22
23exec_prefix = $(prefix)
24bindir = $(exec_prefix)/bin
25libdir = $(exec_prefix)/lib
26
27datadir = $(prefix)/lib
28mandir = $(prefix)/man
29man1dir = $(mandir)/man1
30man2dir = $(mandir)/man2
31man3dir = $(mandir)/man3
32man4dir = $(mandir)/man4
33man5dir = $(mandir)/man5
34man6dir = $(mandir)/man6
35man7dir = $(mandir)/man7
36man8dir = $(mandir)/man8
37man9dir = $(mandir)/man9
38infodir = $(prefix)/info
39includedir = $(prefix)/include
40oldincludedir =
41docdir = $(srcdir)/doc
42
43SHELL = /bin/sh
44
45INSTALL = install -c
46INSTALL_PROGRAM = $(INSTALL)
47INSTALL_DATA = $(INSTALL)
48
49AR = ar
50AR_FLAGS = qc
51CFLAGS = -g
52BISON = bison
53MAKEINFO = makeinfo
54RANLIB = ranlib
55
19139515
SC
56INCDIR = $(srcdir)/../include
57CSEARCH = -I. -I$(srcdir) -I$(INCDIR) -I$(srcdir)/../bfd
a154eea7
SC
58DEP = mkdep
59
06137fcb 60#### host, target, and site specific Makefile frags come in here.
a154eea7 61
06137fcb 62all: run
a154eea7
SC
63
64run: code.o run.o
4d53c4e3 65 $(CC) -o run code.o run.o ../bfd/libbfd.a ../libiberty/libiberty.a
a154eea7
SC
66
67code.c:p1.c p2.c p3.c
f53974be 68 cat $(VPATH)/p1.c p2.c $(VPATH)/p3.c | cb >code.c
a154eea7
SC
69 indent code.c
70
71p2.c:writecode
72 ./writecode >p2.c
73
74
4d53c4e3 75writecode:writecode.c
06137fcb 76 $(CC_FOR_BUILD) -o writecode -g $(CSEARCH) $(srcdir)/writecode.c
a154eea7
SC
77
78
79
80
81
82#### host and target dependent Makefile fragments come in here.
83###
84
85FLAGS_TO_PASS = \
86 "against=$(against)" \
87 "AR=$(AR)" \
88 "AR_FLAGS=$(AR_FLAGS)" \
89 "CC=$(CC)" \
90 "CFLAGS=$(CFLAGS)" \
91 "RANLIB=$(RANLIB)" \
92 "MAKEINFO=$(MAKEINFO)" \
93 "INSTALL=$(INSTALL)" \
94 "INSTALL_DATA=$(INSTALL_DATA)" \
95 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
96 "BISON=$(BISON)"
97
98.c.o:
99 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
100
101
a154eea7
SC
102
103.NOEXPORT:
104
105check:
106
107info:
108clean-info:
109install-info:
110
111# HDEPFILES comes from the host config; TDEPFILES from the target config.
112
113
a154eea7
SC
114
115tags etags: TAGS
116
117TAGS: force
118 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
119
120clean:
121 rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout
122
123clobber realclean: clean
124 rm -f libbfd.a TAGS
125
126# Mark everything as depending on config.status, since the timestamp on
127# sysdep.h might actually move backwards if we reconfig and relink it
128# to a different hosts/h-xxx.h file. This will force a recompile anyway.
129RECONFIG = config.status
130
131
132
133# This target should be invoked before building a new release.
134# 'VERSION' file must be present and contain a string of the form "x.y"
135#
136roll:
137 @V=`cat VERSION` ; \
138 MAJ=`sed 's/\..*//' VERSION` ; \
139 MIN=`sed 's/.*\.//' VERSION` ; \
140 V=$$MAJ.`expr $$MIN + 1` ; \
141 rm -f VERSION ; \
142 echo $$V >VERSION ; \
143 echo Version $$V
144
145# Dummy target to force execution of dependent targets.
146#
147force:
148
149install:
150 -parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
151 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
152 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
153 -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
154 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
155 -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
156 -n=`t='$(program_transform_name)'; echo run | sed -e "" $$t`; \
157 $(INSTALL_PROGRAM) run $(bindir)/$$n; \
158 $(M_INSTALL)
159
160
161
162Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
163 $(SHELL) ./config.status
164
165dep: $(CFILES)
166 mkdep $(CFLAGS) $?
167
168
169# What appears below is generated by a hacked mkdep using gcc -MM.
170
171# DO NOT DELETE THIS LINE -- mkdep uses it.
172# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
173
174
175# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
176
This page took 0.028658 seconds and 4 git commands to generate.