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