Annotation of OpenXM_contrib2/asir2000/lib/Makefile.in, Revision 1.15
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.6 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.14 ohara 81: USE_GC_INTERIX = @USE_GC_INTERIX@
1.15 ! ohara 82: USE_GC_SPARC64 = @USE_GC_SPARC64@
1.7 ohara 83: USE_GC_ZEROPAGE = @USE_GC_ZEROPAGE@
1.1 ohara 84: VERSION = @VERSION@
1.6 ohara 85: XPMLIB = @XPMLIB@
1.1 ohara 86: X_CFLAGS = @X_CFLAGS@
87: X_EXTRA_LIBS = @X_EXTRA_LIBS@
88: X_LIBS = @X_LIBS@
89: X_PRE_LIBS = @X_PRE_LIBS@
90: YACC = @YACC@
91: am__include = @am__include@
92: am__quote = @am__quote@
93: asm_obj = @asm_obj@
94: install_sh = @install_sh@
95: libasir_postfix = @libasir_postfix@
96:
1.9 ohara 97: asirdir = ${libdir}/asir
1.13 noro 98: RR = alpi bfct bgk const cyclic defs.h dfff dmul dmul102 fctrdata fctrtest \
1.1 ohara 99: fff glib gr ifplot katsura mat nf num primdec primdec_lex \
1.12 noro 100: ratint robot solve sp sturm sym xm primdec_mod weight
1.1 ohara 101:
102: subdir = lib
103: mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
104: CONFIG_CLEAN_FILES =
105: DIST_SOURCES =
106: DIST_COMMON = Makefile.am Makefile.in
107: all: all-am
108:
109: .SUFFIXES:
1.6 ohara 110: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
1.1 ohara 111: cd $(top_srcdir) && \
112: $(AUTOMAKE) --gnu lib/Makefile
1.6 ohara 113: Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status
1.1 ohara 114: cd $(top_builddir) && \
115: CONFIG_HEADERS= CONFIG_LINKS= \
116: CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status
117: uninstall-info-am:
118: tags: TAGS
119: TAGS:
120:
121:
122: DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
123:
124: top_distdir = ..
125: distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
126:
127: distdir: $(DISTFILES)
128: @for file in $(DISTFILES); do \
129: if test -f $$file; then d=.; else d=$(srcdir); fi; \
130: dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
131: if test "$$dir" != "$$file" && test "$$dir" != "."; then \
132: $(mkinstalldirs) "$(distdir)/$$dir"; \
133: fi; \
134: if test -d $$d/$$file; then \
135: cp -pR $$d/$$file $(distdir) \
136: || exit 1; \
137: else \
138: test -f $(distdir)/$$file \
139: || cp -p $$d/$$file $(distdir)/$$file \
140: || exit 1; \
141: fi; \
142: done
143: check-am: all-am
144: check: check-am
1.3 ohara 145: all-am: Makefile
1.1 ohara 146:
147: installdirs:
148:
149: install: install-am
150: install-exec: install-exec-am
151: install-data: install-data-am
152: uninstall: uninstall-am
153:
154: install-am: all-am
155: @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
156:
157: installcheck: installcheck-am
158: install-strip:
159: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
160: `test -z '$(STRIP)' || \
161: echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
162: mostlyclean-generic:
163:
164: clean-generic:
165:
166: distclean-generic:
167: -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]*
168:
169: maintainer-clean-generic:
170: @echo "This command is intended for maintainers to use"
171: @echo "it deletes files that may require special tools to rebuild."
172: clean: clean-am
173:
174: clean-am: clean-generic mostlyclean-am
175:
176: distclean: distclean-am
177:
178: distclean-am: clean-am distclean-generic
179:
180: dvi: dvi-am
181:
182: dvi-am:
183:
184: info: info-am
185:
186: info-am:
187:
1.3 ohara 188: install-data-am:
1.1 ohara 189:
190: install-exec-am:
191:
192: install-info: install-info-am
193:
194: install-man:
195:
196: installcheck-am:
197:
198: maintainer-clean: maintainer-clean-am
199:
200: maintainer-clean-am: distclean-am maintainer-clean-generic
201:
202: mostlyclean: mostlyclean-am
203:
204: mostlyclean-am: mostlyclean-generic
205:
1.3 ohara 206: uninstall-am: uninstall-info-am
1.1 ohara 207:
208: .PHONY: all all-am check check-am clean clean-generic distclean \
209: distclean-generic distdir dvi dvi-am info info-am install \
1.3 ohara 210: install-am install-data install-data-am install-exec \
211: install-exec-am install-info install-info-am install-man \
212: install-strip installcheck installcheck-am installdirs \
213: maintainer-clean maintainer-clean-generic mostlyclean \
214: mostlyclean-generic uninstall uninstall-am uninstall-info-am
1.1 ohara 215:
216:
1.3 ohara 217: install-doc:
1.9 ohara 218: -mkdir -p ${DESTDIR}${asirdir}
1.1 ohara 219: -for i in jp eg ; do \
220: uudecode help-$$i.uu ; \
1.9 ohara 221: gzip -dc help-$$i.tgz | ( cd ${DESTDIR}${asirdir}; tar xf - ) ; \
1.1 ohara 222: rm -f help-$$i.tgz ; \
223: done
1.9 ohara 224: -rm ${DESTDIR}${asirdir}/help
225: (cd ${DESTDIR}${asirdir}; ${LN_S} help-eg help)
1.3 ohara 226:
227: install-lib:
1.9 ohara 228: -mkdir -p ${DESTDIR}${asirdir}
1.11 noro 229: -for i in ${RR} ; do \
230: ${INSTALL_DATA} $$i ${DESTDIR}${asirdir} ; \
231: done
1.1 ohara 232: # Tell versions [3.59,3.63) of GNU make to not export all variables.
233: # Otherwise a system limit (for SysV at least) may be exceeded.
234: .NOEXPORT:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>