fix a typo
[bpt/guile.git] / Makefile.in
CommitLineData
a1d5d83a 1# Makefile.in generated automatically by automake 1.1l from Makefile.am
733943b9
TT
2
3# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
4# This Makefile.in is free software; the Free Software Foundation
5# gives unlimited permission to copy, distribute and modify it.
6
0f2d19dd
JB
7
8SHELL = /bin/sh
9
733943b9
TT
10srcdir = @srcdir@
11top_srcdir = @top_srcdir@
12VPATH = @srcdir@
13prefix = @prefix@
14exec_prefix = @exec_prefix@
0f2d19dd 15
733943b9
TT
16bindir = @bindir@
17sbindir = @sbindir@
18libexecdir = @libexecdir@
19datadir = @datadir@
20sysconfdir = @sysconfdir@
21sharedstatedir = @sharedstatedir@
22localstatedir = @localstatedir@
23libdir = @libdir@
24infodir = @infodir@
25mandir = @mandir@
26includedir = @includedir@
27oldincludedir = /usr/include
0f2d19dd 28
733943b9
TT
29pkgdatadir = $(datadir)/@PACKAGE@
30pkglibdir = $(libdir)/@PACKAGE@
31pkgincludedir = $(includedir)/@PACKAGE@
0f2d19dd 32
733943b9 33top_builddir = .
0f2d19dd 34
733943b9
TT
35INSTALL = @INSTALL@
36INSTALL_PROGRAM = @INSTALL_PROGRAM@
37INSTALL_DATA = @INSTALL_DATA@
38INSTALL_SCRIPT = @INSTALL_SCRIPT@
39transform = @program_transform_name@
2f38f619 40MAINT = @MAINT@
a1d5d83a
MG
41INSTALL_SCRIPT = @INSTALL_SCRIPT@
42PACKAGE = @PACKAGE@
733943b9 43existingdirs = @existingdirs@
2f38f619 44VERSION = @VERSION@
0f2d19dd 45
2f38f619 46SUBDIRS = @existingdirs@ newdoc
0f2d19dd 47
2f38f619 48guile_dirs = @existingdirs@ newdoc
0f2d19dd 49
733943b9
TT
50aclocaldir = $(datadir)/aclocal
51aclocal_DATA = guile.m4 threads.m4
0f2d19dd 52
a7a8349d 53EXTRA_DIST = $(aclocal_DATA) ltconfig ltmain.sh HACKING GUILE-VERSION
733943b9
TT
54ACLOCAL = $(top_srcdir)/aclocal.m4
55mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
56CONFIG_CLEAN_FILES =
57DATA = $(aclocal_DATA)
0f2d19dd 58
733943b9
TT
59DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
60Makefile.in NEWS README TODO aclocal.m4 config.guess config.sub \
61configure configure.in install-sh mdate-sh mkinstalldirs
0f2d19dd
JB
62
63
733943b9
TT
64DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) \
65 $(TEXINFOS) $(MANS) $(EXTRA_DIST)
66
67TAR = tar
68default: all
69
70.SUFFIXES:
15ae1bee 71$(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL)
ad93808a 72 cd $(top_srcdir) && automake --gnu Makefile
34281b90
MG
73
74Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
75 cd $(top_builddir) \
76 && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
77
15ae1bee 78$(srcdir)/aclocal.m4: @MAINT@configure.in
733943b9
TT
79 cd $(srcdir) && aclocal
80
733943b9
TT
81config.status: configure
82 $(SHELL) ./config.status --recheck
15ae1bee 83$(srcdir)/configure: @MAINT@configure.in $(ACLOCAL) $(CONFIGURE_DEPENDENCIES)
733943b9
TT
84 cd $(srcdir) && autoconf
85
86install-aclocalDATA: $(aclocal_DATA)
87 $(NORMAL_INSTALL)
88 $(mkinstalldirs) $(aclocaldir)
a1d5d83a 89 @list="$(aclocal_DATA)"; for p in $$list; do \
733943b9 90 if test -f $(srcdir)/$$p; then \
a1d5d83a 91 echo "$(INSTALL_DATA) $(srcdir)/$$p $(aclocaldir)/$$p"; \
733943b9
TT
92 $(INSTALL_DATA) $(srcdir)/$$p $(aclocaldir)/$$p; \
93 else if test -f $$p; then \
a1d5d83a 94 echo "$(INSTALL_DATA) $$p $(aclocaldir)/$$p"; \
733943b9
TT
95 $(INSTALL_DATA) $$p $(aclocaldir)/$$p; \
96 fi; fi; \
0f2d19dd 97 done
733943b9
TT
98
99uninstall-aclocalDATA:
100 list="$(aclocal_DATA)"; for p in $$list; do \
101 rm -f $(aclocaldir)/$$p; \
0f2d19dd
JB
102 done
103
733943b9
TT
104# This directory's subdirectories are mostly independent; you can cd
105# into them and run `make' without going through this Makefile.
106# To change the values of `make' variables: instead of editing Makefiles,
107# (1) if the variable is set in `config.status', edit `config.status'
108# (which will cause the Makefiles to be regenerated when you run `make');
109# (2) otherwise, pass the desired values on the `make' command line.
110
111@SET_MAKE@
0f2d19dd 112
733943b9
TT
113all-recursive install-data-recursive install-exec-recursive \
114installdirs-recursive install-recursive uninstall-recursive \
115check-recursive installcheck-recursive info-recursive dvi-recursive \
116mostlyclean-recursive clean-recursive distclean-recursive \
117maintainer-clean-recursive:
a1d5d83a 118 @for subdir in $(SUBDIRS); do \
733943b9 119 target=`echo $@ | sed s/-recursive//`; \
a1d5d83a
MG
120 echo "Making $$target in $$subdir"; \
121 (cd $$subdir && $(MAKE) $$target) \
733943b9
TT
122 || case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \
123 done && test -z "$$fail"
124tags-recursive:
125 list="$(SUBDIRS)"; for subdir in $$list; do \
126 (cd $$subdir && $(MAKE) tags); \
0f2d19dd 127 done
733943b9
TT
128tags: TAGS
129TAGS:
0f2d19dd
JB
130
131
733943b9
TT
132distdir = $(PACKAGE)-$(VERSION)
133# This target untars the dist file and tries a VPATH configuration. Then
134# it guarantees that the distribution is self-contained by making another
135# tarfile.
136distcheck: dist
137 rm -rf $(distdir)
138 $(TAR) zxf $(distdir).tar.gz
139 mkdir $(distdir)/=build
140 mkdir $(distdir)/=inst
141 dc_install_base=`cd $(distdir)/=inst && pwd`; \
142 cd $(distdir)/=build \
143 && ../configure --srcdir=.. --prefix=$$dc_install_base \
144 && $(MAKE) \
145 && $(MAKE) dvi \
146 && $(MAKE) check \
147 && $(MAKE) install \
148 && $(MAKE) installcheck \
149 && $(MAKE) dist
150 rm -rf $(distdir)
151 @echo "========================"; \
152 echo "$(distdir).tar.gz is ready for distribution"; \
153 echo "========================"
154dist: distdir
155 -chmod -R a+r $(distdir)
156 $(TAR) chozf $(distdir).tar.gz $(distdir)
157 rm -rf $(distdir)
158dist-all: distdir
159 -chmod -R a+r $(distdir)
160 $(TAR) chozf $(distdir).tar.gz $(distdir)
161 rm -rf $(distdir)
162distdir: $(DISTFILES)
163 rm -rf $(distdir)
164 mkdir $(distdir)
165 -chmod 755 $(distdir)
166 here=`pwd`; distdir=`cd $(distdir) && pwd` \
167 && cd $(srcdir) \
ad93808a 168 && automake --include-deps --build-dir=$$here --srcdir-name=$(srcdir) --output-dir=$$distdir --gnu
733943b9
TT
169 @for file in $(DISTFILES); do \
170 d=$(srcdir); \
171 test -f $(distdir)/$$file \
172 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
173 || cp -p $$d/$$file $(distdir)/$$file; \
174 done
175 for subdir in $(SUBDIRS); do \
176 test -d $(distdir)/$$subdir \
177 || mkdir $(distdir)/$$subdir \
178 || exit 1; \
179 chmod 755 $(distdir)/$$subdir; \
180 (cd $$subdir && $(MAKE) distdir=../$(distdir)/$$subdir distdir) \
181 || exit 1; \
0f2d19dd 182 done
733943b9
TT
183info: info-recursive
184dvi: dvi-recursive
185check: all-am
186 $(MAKE) check-recursive
187installcheck: installcheck-recursive
188all-am: $(DATA) Makefile
189
190install-data-am: install-aclocalDATA
191
192uninstall-am: uninstall-aclocalDATA
193
194install-exec: install-exec-recursive
195 $(NORMAL_INSTALL)
196
197install-data: install-data-recursive install-data-am
198 $(NORMAL_INSTALL)
199
200install: install-recursive install-data-am
201 @:
202
203uninstall: uninstall-recursive uninstall-am
204
205all: all-recursive all-am
206
207install-strip:
208 $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
209installdirs: installdirs-recursive
210 $(mkinstalldirs) $(aclocaldir)
211
212
213mostlyclean-generic:
214 test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
215
216clean-generic:
217 test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
218
219distclean-generic:
220 rm -f Makefile $(DISTCLEANFILES)
221 rm -f config.cache config.log stamp-h
222 test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
223
224maintainer-clean-generic:
225 test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
226 test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
227mostlyclean-am: mostlyclean-generic
228
34281b90 229clean-am: clean-generic mostlyclean-am
733943b9 230
34281b90 231distclean-am: distclean-generic clean-am
733943b9 232
34281b90 233maintainer-clean-am: maintainer-clean-generic distclean-am
733943b9
TT
234
235mostlyclean: mostlyclean-am mostlyclean-recursive
236
237clean: clean-am clean-recursive
238
239distclean: distclean-am distclean-recursive
240 rm -f config.status
241
242maintainer-clean: maintainer-clean-am maintainer-clean-recursive
243 @echo "This command is intended for maintainers to use;"
244 @echo "it deletes files that may require special tools to rebuild."
245 rm -f config.status
0f2d19dd 246
733943b9
TT
247.PHONY: default uninstall-aclocalDATA install-aclocalDATA \
248install-data-recursive uninstall-data-recursive install-exec-recursive \
249uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
250all-recursive check-recursive installcheck-recursive info-recursive \
251dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
252maintainer-clean-recursive tags tags-recursive distdir info dvi \
253installcheck all-am install-data-am uninstall-am install-exec \
254install-data install uninstall all installdirs mostlyclean-generic \
255distclean-generic clean-generic maintainer-clean-generic clean \
256mostlyclean distclean maintainer-clean
0f2d19dd 257
733943b9
TT
258guile-dist:
259 $(MAKE) SUBDIRS="$(guile_dirs)" dist
0f2d19dd 260
733943b9
TT
261# Tell versions [3.59,3.63) of GNU make to not export all variables.
262# Otherwise a system limit (for SysV at least) may be exceeded.
263.NOEXPORT: