1# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
2
3# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
4# This Makefile.in is free software; the Free Software Foundation
5# gives unlimited permission to copy and/or distribute it,
6# with or without modifications, as long as this notice is preserved.
7
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11# PARTICULAR PURPOSE.
12
13
14SHELL = @SHELL@
15
16srcdir = @srcdir@
17top_srcdir = @top_srcdir@
18VPATH = @srcdir@
19prefix = @prefix@
20exec_prefix = @exec_prefix@
21
22bindir = @bindir@
23sbindir = @sbindir@
24libexecdir = @libexecdir@
25datadir = @datadir@
26sysconfdir = @sysconfdir@
27sharedstatedir = @sharedstatedir@
28localstatedir = @localstatedir@
29libdir = @libdir@
30infodir = @infodir@
31mandir = @mandir@
32includedir = @includedir@
33oldincludedir = /usr/include
34
35DESTDIR =
36
37pkgdatadir = $(datadir)/@PACKAGE@
38pkglibdir = $(libdir)/@PACKAGE@
39pkgincludedir = $(includedir)/@PACKAGE@
40
41top_builddir = .
42
43ACLOCAL = @ACLOCAL@
44AUTOCONF = @AUTOCONF@
45AUTOMAKE = @AUTOMAKE@
46AUTOHEADER = @AUTOHEADER@
47
48INSTALL = @INSTALL@
49INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
50INSTALL_DATA = @INSTALL_DATA@
51INSTALL_SCRIPT = @INSTALL_SCRIPT@
52transform = @program_transform_name@
53
54NORMAL_INSTALL = :
55PRE_INSTALL = :
56POST_INSTALL = :
57NORMAL_UNINSTALL = :
58PRE_UNINSTALL = :
59POST_UNINSTALL = :
60host_alias = @host_alias@
61host_triplet = @host@
62CC = @CC@
63CXX = @CXX@
64HAVE_LIB = @HAVE_LIB@
65LIB = @LIB@
66LTLIB = @LTLIB@
67MAKEINFO = @MAKEINFO@
68PACKAGE = @PACKAGE@
69RANLIB = @RANLIB@
70SDL_CFLAGS = @SDL_CFLAGS@
71SDL_CONFIG = @SDL_CONFIG@
72SDL_LIBS = @SDL_LIBS@
73TR_CFLAGS = @TR_CFLAGS@
74TR_CPPFLAGS = @TR_CPPFLAGS@
75TR_CXXFLAGS = @TR_CXXFLAGS@
76TR_LIBS = @TR_LIBS@
77VERSION = @VERSION@
78
79SUBDIRS = src
80ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
81mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
82CONFIG_HEADER = config.h
83CONFIG_CLEAN_FILES =
84DIST_COMMON =  README ./stamp-h.in AUTHORS COPYING ChangeLog INSTALL \
85Makefile.am Makefile.in NEWS acinclude.m4 aclocal.m4 config.guess \
86config.h.in config.sub configure configure.in install-sh missing \
87mkinstalldirs
88
89
90DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
91
92TAR = gtar
93GZIP_ENV = --best
94all: all-redirect
95.SUFFIXES:
96$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
97	cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
98
99Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
100	cd $(top_builddir) \
101	  && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
102
103$(ACLOCAL_M4):  configure.in  acinclude.m4
104	cd $(srcdir) && $(ACLOCAL)
105
106config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
107	$(SHELL) ./config.status --recheck
108$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
109	cd $(srcdir) && $(AUTOCONF)
110
111config.h: stamp-h
112	@if test ! -f $@; then \
113		rm -f stamp-h; \
114		$(MAKE) stamp-h; \
115	else :; fi
116stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status
117	cd $(top_builddir) \
118	  && CONFIG_FILES= CONFIG_HEADERS=config.h \
119	     $(SHELL) ./config.status
120	@echo timestamp > stamp-h 2> /dev/null
121$(srcdir)/config.h.in: $(srcdir)/stamp-h.in
122	@if test ! -f $@; then \
123		rm -f $(srcdir)/stamp-h.in; \
124		$(MAKE) $(srcdir)/stamp-h.in; \
125	else :; fi
126$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4)
127	cd $(top_srcdir) && $(AUTOHEADER)
128	@echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null
129
130mostlyclean-hdr:
131
132clean-hdr:
133
134distclean-hdr:
135	-rm -f config.h
136
137maintainer-clean-hdr:
138
139# This directory's subdirectories are mostly independent; you can cd
140# into them and run `make' without going through this Makefile.
141# To change the values of `make' variables: instead of editing Makefiles,
142# (1) if the variable is set in `config.status', edit `config.status'
143#     (which will cause the Makefiles to be regenerated when you run `make');
144# (2) otherwise, pass the desired values on the `make' command line.
145
146@SET_MAKE@
147
148all-recursive install-data-recursive install-exec-recursive \
149installdirs-recursive install-recursive uninstall-recursive  \
150check-recursive installcheck-recursive info-recursive dvi-recursive:
151	@set fnord $(MAKEFLAGS); amf=$$2; \
152	dot_seen=no; \
153	target=`echo $@ | sed s/-recursive//`; \
154	list='$(SUBDIRS)'; for subdir in $$list; do \
155	  echo "Making $$target in $$subdir"; \
156	  if test "$$subdir" = "."; then \
157	    dot_seen=yes; \
158	    local_target="$$target-am"; \
159	  else \
160	    local_target="$$target"; \
161	  fi; \
162	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
163	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
164	done; \
165	if test "$$dot_seen" = "no"; then \
166	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
167	fi; test -z "$$fail"
168
169mostlyclean-recursive clean-recursive distclean-recursive \
170maintainer-clean-recursive:
171	@set fnord $(MAKEFLAGS); amf=$$2; \
172	dot_seen=no; \
173	rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
174	  rev="$$subdir $$rev"; \
175	  test "$$subdir" != "." || dot_seen=yes; \
176	done; \
177	test "$$dot_seen" = "no" && rev=". $$rev"; \
178	target=`echo $@ | sed s/-recursive//`; \
179	for subdir in $$rev; do \
180	  echo "Making $$target in $$subdir"; \
181	  if test "$$subdir" = "."; then \
182	    local_target="$$target-am"; \
183	  else \
184	    local_target="$$target"; \
185	  fi; \
186	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
187	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
188	done && test -z "$$fail"
189tags-recursive:
190	list='$(SUBDIRS)'; for subdir in $$list; do \
191	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
192	done
193
194tags: TAGS
195
196ID: $(HEADERS) $(SOURCES) $(LISP)
197	list='$(SOURCES) $(HEADERS)'; \
198	unique=`for i in $$list; do echo $$i; done | \
199	  awk '    { files[$$0] = 1; } \
200	       END { for (i in files) print i; }'`; \
201	here=`pwd` && cd $(srcdir) \
202	  && mkid -f$$here/ID $$unique $(LISP)
203
204TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) $(LISP)
205	tags=; \
206	here=`pwd`; \
207	list='$(SUBDIRS)'; for subdir in $$list; do \
208   if test "$$subdir" = .; then :; else \
209	    test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
210   fi; \
211	done; \
212	list='$(SOURCES) $(HEADERS)'; \
213	unique=`for i in $$list; do echo $$i; done | \
214	  awk '    { files[$$0] = 1; } \
215	       END { for (i in files) print i; }'`; \
216	test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \
217	  || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP) -o $$here/TAGS)
218
219mostlyclean-tags:
220
221clean-tags:
222
223distclean-tags:
224	-rm -f TAGS ID
225
226maintainer-clean-tags:
227
228distdir = $(PACKAGE)-$(VERSION)
229top_distdir = $(distdir)
230
231# This target untars the dist file and tries a VPATH configuration.  Then
232# it guarantees that the distribution is self-contained by making another
233# tarfile.
234distcheck: dist
235	-rm -rf $(distdir)
236	GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
237	mkdir $(distdir)/=build
238	mkdir $(distdir)/=inst
239	dc_install_base=`cd $(distdir)/=inst && pwd`; \
240	cd $(distdir)/=build \
241	  && ../configure --srcdir=.. --prefix=$$dc_install_base \
242	  && $(MAKE) $(AM_MAKEFLAGS) \
243	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
244	  && $(MAKE) $(AM_MAKEFLAGS) check \
245	  && $(MAKE) $(AM_MAKEFLAGS) install \
246	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
247	  && $(MAKE) $(AM_MAKEFLAGS) dist
248	-rm -rf $(distdir)
249	@banner="$(distdir).tar.gz is ready for distribution"; \
250	dashes=`echo "$$banner" | sed s/./=/g`; \
251	echo "$$dashes"; \
252	echo "$$banner"; \
253	echo "$$dashes"
254dist: distdir
255	-chmod -R a+r $(distdir)
256	GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
257	-rm -rf $(distdir)
258dist-all: distdir
259	-chmod -R a+r $(distdir)
260	GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
261	-rm -rf $(distdir)
262distdir: $(DISTFILES)
263	-rm -rf $(distdir)
264	mkdir $(distdir)
265	-chmod 777 $(distdir)
266	here=`cd $(top_builddir) && pwd`; \
267	top_distdir=`cd $(distdir) && pwd`; \
268	distdir=`cd $(distdir) && pwd`; \
269	cd $(top_srcdir) \
270	  && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
271	@for file in $(DISTFILES); do \
272	  d=$(srcdir); \
273	  if test -d $$d/$$file; then \
274	    cp -pr $$d/$$file $(distdir)/$$file; \
275	  else \
276	    test -f $(distdir)/$$file \
277	    || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
278	    || cp -p $$d/$$file $(distdir)/$$file || :; \
279	  fi; \
280	done
281	for subdir in $(SUBDIRS); do \
282	  if test "$$subdir" = .; then :; else \
283	    test -d $(distdir)/$$subdir \
284	    || mkdir $(distdir)/$$subdir \
285	    || exit 1; \
286	    chmod 777 $(distdir)/$$subdir; \
287	    (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
288	      || exit 1; \
289	  fi; \
290	done
291info-am:
292info: info-recursive
293dvi-am:
294dvi: dvi-recursive
295check-am: all-am
296check: check-recursive
297installcheck-am:
298installcheck: installcheck-recursive
299all-recursive-am: config.h
300	$(MAKE) $(AM_MAKEFLAGS) all-recursive
301
302install-exec-am:
303install-exec: install-exec-recursive
304
305install-data-am:
306install-data: install-data-recursive
307
308install-am: all-am
309	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
310install: install-recursive
311uninstall-am:
312uninstall: uninstall-recursive
313all-am: Makefile config.h
314all-redirect: all-recursive-am
315install-strip:
316	$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
317installdirs: installdirs-recursive
318installdirs-am:
319
320
321mostlyclean-generic:
322
323clean-generic:
324
325distclean-generic:
326	-rm -f Makefile $(CONFIG_CLEAN_FILES)
327	-rm -f config.cache config.log stamp-h stamp-h[0-9]*
328
329maintainer-clean-generic:
330mostlyclean-am:  mostlyclean-hdr mostlyclean-tags mostlyclean-generic
331
332mostlyclean: mostlyclean-recursive
333
334clean-am:  clean-hdr clean-tags clean-generic mostlyclean-am
335
336clean: clean-recursive
337
338distclean-am:  distclean-hdr distclean-tags distclean-generic clean-am
339
340distclean: distclean-recursive
341	-rm -f config.status
342
343maintainer-clean-am:  maintainer-clean-hdr maintainer-clean-tags \
344		maintainer-clean-generic distclean-am
345	@echo "This command is intended for maintainers to use;"
346	@echo "it deletes files that may require special tools to rebuild."
347
348maintainer-clean: maintainer-clean-recursive
349	-rm -f config.status
350
351.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
352install-data-recursive uninstall-data-recursive install-exec-recursive \
353uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
354all-recursive check-recursive installcheck-recursive info-recursive \
355dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
356maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
357distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
358dvi-am dvi check check-am installcheck-am installcheck all-recursive-am \
359install-exec-am install-exec install-data-am install-data install-am \
360install uninstall-am uninstall all-redirect all-am all installdirs-am \
361installdirs mostlyclean-generic distclean-generic clean-generic \
362maintainer-clean-generic clean mostlyclean distclean maintainer-clean
363
364
365# Tell versions [3.59,3.63) of GNU make to not export all variables.
366# Otherwise a system limit (for SysV at least) may be exceeded.
367.NOEXPORT:
368