Annotation of OpenXM_contrib2/asir2000/fft/Makefile.in, Revision 1.6
1.1 ohara 1: # Makefile.in generated automatically by automake 1.5 from Makefile.am.
2:
3: # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
4: # Free Software Foundation, Inc.
5: # This Makefile.in is free software; the Free Software Foundation
6: # gives unlimited permission to copy and/or distribute it,
7: # with or without modifications, as long as this notice is preserved.
8:
9: # This program is distributed in the hope that it will be useful,
10: # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11: # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12: # PARTICULAR PURPOSE.
13:
14: @SET_MAKE@
15:
16: SHELL = @SHELL@
17:
18: srcdir = @srcdir@
19: top_srcdir = @top_srcdir@
20: VPATH = @srcdir@
21: prefix = @prefix@
22: exec_prefix = @exec_prefix@
23:
24: bindir = @bindir@
25: sbindir = @sbindir@
26: libexecdir = @libexecdir@
27: datadir = @datadir@
28: sysconfdir = @sysconfdir@
29: sharedstatedir = @sharedstatedir@
30: localstatedir = @localstatedir@
31: libdir = @libdir@
32: infodir = @infodir@
33: mandir = @mandir@
34: includedir = @includedir@
35: oldincludedir = /usr/include
36: pkgdatadir = $(datadir)/@PACKAGE@
37: pkglibdir = $(libdir)/@PACKAGE@
38: pkgincludedir = $(includedir)/@PACKAGE@
39: top_builddir = ..
40:
41: ACLOCAL = @ACLOCAL@
42: AUTOCONF = @AUTOCONF@
43: AUTOMAKE = @AUTOMAKE@
44: AUTOHEADER = @AUTOHEADER@
45:
46: INSTALL = @INSTALL@
47: INSTALL_PROGRAM = @INSTALL_PROGRAM@
48: INSTALL_DATA = @INSTALL_DATA@
49: INSTALL_SCRIPT = @INSTALL_SCRIPT@
50: INSTALL_HEADER = $(INSTALL_DATA)
51: transform = @program_transform_name@
52: NORMAL_INSTALL = :
53: PRE_INSTALL = :
54: POST_INSTALL = :
55: NORMAL_UNINSTALL = :
56: PRE_UNINSTALL = :
57: POST_UNINSTALL = :
58: build_alias = @build_alias@
59: build_triplet = @build@
60: host_alias = @host_alias@
61: host_triplet = @host@
62: target_alias = @target_alias@
63: target_triplet = @target@
64: AMTAR = @AMTAR@
65: AWK = @AWK@
66: CC = @CC@
67: DEPDIR = @DEPDIR@
68: EXEEXT = @EXEEXT@
69: FEPLIB = @FEPLIB@
70: INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
71: LAPACKLIB = @LAPACKLIB@
72: LN_S = @LN_S@
1.4 ohara 73: MAINT = @MAINT@
1.1 ohara 74: MPIINC = @MPIINC@
75: MPILIB = @MPILIB@
76: OBJEXT = @OBJEXT@
77: PACKAGE = @PACKAGE@
78: PARIINC = @PARIINC@
79: PARILIB = @PARILIB@
80: RANLIB = @RANLIB@
1.5 ohara 81: USE_GC_ZEROPAGE = @USE_GC_ZEROPAGE@
1.1 ohara 82: VERSION = @VERSION@
1.4 ohara 83: XPMLIB = @XPMLIB@
1.1 ohara 84: X_CFLAGS = @X_CFLAGS@
85: X_EXTRA_LIBS = @X_EXTRA_LIBS@
86: X_LIBS = @X_LIBS@
87: X_PRE_LIBS = @X_PRE_LIBS@
88: YACC = @YACC@
89: am__include = @am__include@
90: am__quote = @am__quote@
91: asm_obj = @asm_obj@
92: install_sh = @install_sh@
93: libasir_postfix = @libasir_postfix@
94:
1.6 ! ohara 95: asirdir = ${prefix}/lib/asir
! 96: DEFS = @DEFS@ -DASIR_LIBDIR=\"${asirdir}\"
1.1 ohara 97: INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/parse -I${top_srcdir}/io \
98: -I${top_srcdir}/gc/include \
99: @PARIINC@ @MPIINC@ @X_CFLAGS@
100:
101: noinst_LIBRARIES = libdft.a
102: libdft_a_SOURCES = dft.c polmul.c fft_primes.c
103: subdir = fft
104: mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
105: CONFIG_CLEAN_FILES =
106: LIBRARIES = $(noinst_LIBRARIES)
107:
108: libdft_a_AR = $(AR) cru
109: libdft_a_LIBADD =
110: am_libdft_a_OBJECTS = dft.$(OBJEXT) polmul.$(OBJEXT) \
111: fft_primes.$(OBJEXT)
112: libdft_a_OBJECTS = $(am_libdft_a_OBJECTS)
113: DEFAULT_INCLUDES = -I. -I$(srcdir)
114: CPPFLAGS = @CPPFLAGS@
115: LDFLAGS = @LDFLAGS@
116: LIBS = @LIBS@
117: depcomp = $(SHELL) $(top_srcdir)/depcomp
118: @AMDEP_TRUE@DEP_FILES = $(DEPDIR)/dft.Po $(DEPDIR)/fft_primes.Po \
119: @AMDEP_TRUE@ $(DEPDIR)/polmul.Po
120: COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
121: $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
122: CCLD = $(CC)
123: LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
124: CFLAGS = @CFLAGS@
125: DIST_SOURCES = $(libdft_a_SOURCES)
126: DIST_COMMON = Makefile.am Makefile.in
127: SOURCES = $(libdft_a_SOURCES)
128:
129: all: all-am
130:
131: .SUFFIXES:
132: .SUFFIXES: .c .o .obj
1.4 ohara 133: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
1.1 ohara 134: cd $(top_srcdir) && \
135: $(AUTOMAKE) --gnu fft/Makefile
1.4 ohara 136: Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status
1.1 ohara 137: cd $(top_builddir) && \
138: CONFIG_HEADERS= CONFIG_LINKS= \
139: CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status
140:
141: AR = ar
142:
143: clean-noinstLIBRARIES:
144: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
145: libdft.a: $(libdft_a_OBJECTS) $(libdft_a_DEPENDENCIES)
146: -rm -f libdft.a
147: $(libdft_a_AR) libdft.a $(libdft_a_OBJECTS) $(libdft_a_LIBADD)
148: $(RANLIB) libdft.a
149:
150: mostlyclean-compile:
151: -rm -f *.$(OBJEXT) core *.core
152:
153: distclean-compile:
154: -rm -f *.tab.c
155:
156: @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/dft.Po@am__quote@
157: @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fft_primes.Po@am__quote@
158: @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/polmul.Po@am__quote@
159:
160: distclean-depend:
161: -rm -rf $(DEPDIR)
162:
163: .c.o:
164: @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
165: @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
166: @AMDEP_TRUE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
167: $(COMPILE) -c `test -f $< || echo '$(srcdir)/'`$<
168:
169: .c.obj:
170: @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
171: @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
172: @AMDEP_TRUE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
173: $(COMPILE) -c `cygpath -w $<`
174: CCDEPMODE = @CCDEPMODE@
175: uninstall-info-am:
176:
177: tags: TAGS
178:
179: ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
180: list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \
181: unique=`for i in $$list; do \
182: if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
183: done | \
184: $(AWK) ' { files[$$0] = 1; } \
185: END { for (i in files) print i; }'`; \
186: mkid -fID $$unique $(LISP)
187:
188: TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
189: $(TAGS_FILES) $(LISP)
190: tags=; \
191: here=`pwd`; \
192: list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \
193: unique=`for i in $$list; do \
194: if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
195: done | \
196: $(AWK) ' { files[$$0] = 1; } \
197: END { for (i in files) print i; }'`; \
198: test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
199: || etags $(ETAGS_ARGS) $$tags $$unique $(LISP)
200:
201: GTAGS:
202: here=`CDPATH=: && cd $(top_builddir) && pwd` \
203: && cd $(top_srcdir) \
204: && gtags -i $(GTAGS_ARGS) $$here
205:
206: distclean-tags:
207: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
208:
209: DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
210:
211: top_distdir = ..
212: distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
213:
214: distdir: $(DISTFILES)
215: @for file in $(DISTFILES); do \
216: if test -f $$file; then d=.; else d=$(srcdir); fi; \
217: dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
218: if test "$$dir" != "$$file" && test "$$dir" != "."; then \
219: $(mkinstalldirs) "$(distdir)/$$dir"; \
220: fi; \
221: if test -d $$d/$$file; then \
222: cp -pR $$d/$$file $(distdir) \
223: || exit 1; \
224: else \
225: test -f $(distdir)/$$file \
226: || cp -p $$d/$$file $(distdir)/$$file \
227: || exit 1; \
228: fi; \
229: done
230: check-am: all-am
231: check: check-am
232: all-am: Makefile $(LIBRARIES)
233:
234: installdirs:
235:
236: install: install-am
237: install-exec: install-exec-am
238: install-data: install-data-am
239: uninstall: uninstall-am
240:
241: install-am: all-am
242: @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
243:
244: installcheck: installcheck-am
245: install-strip:
246: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
247: `test -z '$(STRIP)' || \
248: echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
249: mostlyclean-generic:
250:
251: clean-generic:
252:
253: distclean-generic:
254: -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
255:
256: maintainer-clean-generic:
257: @echo "This command is intended for maintainers to use"
258: @echo "it deletes files that may require special tools to rebuild."
259: clean: clean-am
260:
261: clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
262:
263: distclean: distclean-am
264:
265: distclean-am: clean-am distclean-compile distclean-depend \
266: distclean-generic distclean-tags
267:
268: dvi: dvi-am
269:
270: dvi-am:
271:
272: info: info-am
273:
274: info-am:
275:
276: install-data-am:
277:
278: install-exec-am:
279:
280: install-info: install-info-am
281:
282: install-man:
283:
284: installcheck-am:
285:
286: maintainer-clean: maintainer-clean-am
287:
288: maintainer-clean-am: distclean-am maintainer-clean-generic
289:
290: mostlyclean: mostlyclean-am
291:
292: mostlyclean-am: mostlyclean-compile mostlyclean-generic
293:
294: uninstall-am: uninstall-info-am
295:
296: .PHONY: GTAGS all all-am check check-am clean clean-generic \
297: clean-noinstLIBRARIES distclean distclean-compile \
298: distclean-depend distclean-generic distclean-tags distdir dvi \
299: dvi-am info info-am install install-am install-data \
300: install-data-am install-exec install-exec-am install-info \
301: install-info-am install-man install-strip installcheck \
302: installcheck-am installdirs maintainer-clean \
303: maintainer-clean-generic mostlyclean mostlyclean-compile \
304: mostlyclean-generic tags uninstall uninstall-am \
305: uninstall-info-am
306:
307: # Tell versions [3.59,3.63) of GNU make to not export all variables.
308: # Otherwise a system limit (for SysV at least) may be exceeded.
309: .NOEXPORT:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>