Annotation of OpenXM_contrib2/asir2000/Makefile.am, Revision 1.41
1.41 ! noro 1: ## $OpenXM: OpenXM_contrib2/asir2000/Makefile.am,v 1.40 2013/12/20 02:02:23 noro Exp $
1.1 ohara 2:
3: AUTOMAKE_OPTIONS = foreign no-dependencies 1.5
4: if USE_PLOT
5: PLOTDIR = plot
6: PLLIB = plot/libplot.a
1.10 ohara 7: X11LIB = @X_LIBS@ -lXaw -lXmu -lXt @X_PRE_LIBS@ @XPMLIB@ -lXext -lX11 @X_EXTRA_LIBS@
1.1 ohara 8: endif
9:
10: SUBDIRS = asm builtin engine fft include io lib parse ${PLOTDIR}
11:
1.17 ohara 12: asirdir = ${libdir}/asir
13: asir_PROGRAMS = asir
14: asir_SOURCES = parse/main.c
1.31 ohara 15: asir_LDADD = libasir.a @ASIR_GCLIB@
1.17 ohara 16: CLEANFILES = ${asir_LDADD} asir-openxm-${VERSION}.tgz
17:
1.39 noro 18: GC_TAR_GZ = gc-7.2b.tar.gz
19: GC_PATCH = gc-7.diff gc-7.0-risa.diff
20: #GC_TAR_GZ = ${GC}.tar.gz
21: #GC_PATCH = gc6.diff gc6-risa.diff
1.22 ohara 22: GC_MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/
23: OX_FETCH = ${bindir}/oxfetch.sh
1.21 noro 24:
1.17 ohara 25: DEFS = @DEFS@ -DASIR_LIBDIR=\"${asirdir}\"
1.1 ohara 26: INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/parse -I${top_srcdir}/io \
1.41 ! noro 27: -I${prefix}/include @GCINC@ @PARIINC@ @X_CFLAGS@
1.1 ohara 28:
1.31 ohara 29: GLIB = @ASIR_GCLIB@
1.1 ohara 30: ALIB = asm/libasm.a
31: BLIB = builtin/libfunc.a
32: ELIB = engine/libca.a
33: FLIB = fft/libdft.a
34: IOLIB = io/libio.a
35: PLIB = parse/libparse.a
1.40 noro 36: GMPLIB = ${libdir}/libgmp.a
1.1 ohara 37:
38: ASIRLIB = ${BLIB} ${PLIB} ${IOLIB} ${PLLIB} ${ELIB} ${FLIB} ${ALIB}
1.40 noro 39: LIBS = @LIBS@ @GCLIB@ @PARILIB@ @LAPACKLIB@ ${X11LIB} ${FEPLIB} ${GMPLIB} -lm ${EXTRALIBS}
1.1 ohara 40: # EXTRALIBS = @EXTRALIBS@
41:
1.33 ohara 42: all-recursive: ${GLIB}
43:
1.1 ohara 44: umain.o: parse/main.c
45: ${COMPILE} -DUINIT main.c -o umain.o
46:
1.30 ohara 47: libasir-gc.a: ${GC_PATCH}
1.22 ohara 48: -if [ ! -f ${top_srcdir}/.gc_fetch_done ]; then \
49: if [ ! -f ${GC_DISTDIR}/${GC_TAR_GZ} ]; then \
50: ${OX_FETCH} ${GC_MASTER_SITE}${GC_TAR_GZ} ${GC_DISTDIR}; \
51: fi ; \
52: touch ${top_srcdir}/.gc_fetch_done ; \
53: fi
54: -if [ ! -f ${top_srcdir}/.gc_risa_done ]; then \
1.23 ohara 55: (cd ${top_srcdir}; tar xzvf ${GC_DISTDIR}/${GC_TAR_GZ}) ; \
1.28 ohara 56: for i in ${GC_PATCH} ; do \
57: (cd ${top_srcdir}/${GC}; patch -p1 < ../$$i) ; \
58: done ; \
1.22 ohara 59: touch ${top_srcdir}/.gc_risa_done ; \
1.21 noro 60: fi
1.20 ohara 61: -if [ "${USE_GC_SPARC64}" = yes \
1.22 ohara 62: -a ! -f ${top_srcdir}/${GC}/.patch_gc_sparc64_done ]; then \
63: (cd ${top_srcdir}/${GC}; patch -p0 < ../gc_sparc64.diff) ; \
64: touch ${top_srcdir}/${GC}/.patch_gc_sparc64_done ; \
1.11 ohara 65: fi
1.22 ohara 66: -if [ ! -f ${top_srcdir}/${GC}/.configure_done ]; then \
1.26 ohara 67: (cd ${top_srcdir}/${GC}; ./configure ${GC_CONFIGURE_ARGS}) ; \
1.22 ohara 68: touch ${top_srcdir}/${GC}/.configure_done ; \
1.1 ohara 69: fi
1.22 ohara 70: (cd ${top_srcdir}/${GC}; ${MAKE})
1.29 ohara 71: cp ${top_srcdir}/${GC}/.libs/libgc.a $@
1.1 ohara 72:
1.30 ohara 73: libasir.a: ${ASIRLIB} ${GLIB} parse/gc_risa.c
1.1 ohara 74: -mkdir ${top_srcdir}/libtmp
75: -rm -f ${top_srcdir}/libtmp/* ${top_srcdir}/$@
76: for i in ${ASIRLIB}; do (cd ${top_srcdir}/libtmp; ar x ../$$i; chmod 644 *) done
1.29 ohara 77: (cd ${top_srcdir}/parse; ${MAKE} gc_risa.o; cp gc_risa.o ../libtmp)
1.1 ohara 78: (cd ${top_srcdir}/libtmp; ${AR} cq ../$@ *.o)
79: (cd ${top_srcdir}; ${RANLIB} $@)
80: -rm -rf ${top_srcdir}/libtmp
81:
1.3 ohara 82: install-libasir: libasir.a
1.17 ohara 83: mkdir -p ${DESTDIR}${libdir}
84: ${INSTALL_DATA} libasir.a ${DESTDIR}${libdir}/libasir${libasir_postfix}.a
1.4 ohara 85:
1.18 ohara 86: install-libasir-gc: libasir-gc.a
87: mkdir -p ${DESTDIR}${libdir}
88: ${INSTALL_DATA} libasir-gc.a ${DESTDIR}${libdir}/libasir-gc.a
89:
90: install-openxm: asir${EXEEXT} install-libasir install-libasir-gc
1.17 ohara 91: -mkdir -p ${DESTDIR}${bindir}
92: ${INSTALL_PROGRAM} asir ${DESTDIR}${bindir}
93: -mkdir -p ${DESTDIR}${asirdir}
1.4 ohara 94: (cd ${top_srcdir}/lib; ${MAKE} install-doc install-lib)
1.17 ohara 95: -rm -f ${DESTDIR}${bindir}/ox_asir${EXEEXT}
96: (cd ${DESTDIR}${bindir} ; ${LN_S} asir${EXEEXT} ox_asir${EXEEXT})
97: -(cd ${DESTDIR}${asirdir}; \
1.5 ohara 98: rm -f asir${EXEEXT} ox_asir${EXEEXT} ox_launch${EXEEXT} ox_plot${EXEEXT})
1.17 ohara 99: (cd ${DESTDIR}${asirdir} ; \
1.5 ohara 100: ${LN_S} ../../bin/asir${EXEEXT} asir${EXEEXT} ; \
101: ${LN_S} asir${EXEEXT} ox_asir${EXEEXT} ; \
102: ${LN_S} asir${EXEEXT} ox_launch${EXEEXT} ; \
103: ${LN_S} asir${EXEEXT} ox_plot${EXEEXT})
1.7 ohara 104: (cd ${top_srcdir}/include; ${MAKE} install)
1.8 ohara 105: (cd ${top_srcdir}/parse; ${MAKE} install)
1.4 ohara 106:
107: install-lib:
108: (cd ${top_srcdir}/lib; ${MAKE} install-lib)
1.17 ohara 109: -(cd ${DESTDIR}${asirdir}; \
1.6 ohara 110: rm -f ox_asir${EXEEXT} ox_launch${EXEEXT} ox_plot${EXEEXT})
1.17 ohara 111: (cd ${DESTDIR}${asirdir} ; \
1.4 ohara 112: ${LN_S} asir${EXEEXT} ox_asir${EXEEXT} ; \
113: ${LN_S} asir${EXEEXT} ox_launch${EXEEXT} ; \
114: ${LN_S} asir${EXEEXT} ox_plot${EXEEXT})
1.17 ohara 115: -mkdir -p ${DESTDIR}${bindir}
116: -rm -f ${DESTDIR}${bindir}/asir${EXEEXT}
117: (cd ${DESTDIR}${bindir} ; ${LN_S} ../lib/asir/asir${EXEEXT} asir${EXEEXT})
1.4 ohara 118:
119: install-doc:
120: (cd ${top_srcdir}/lib; ${MAKE} install-doc)
1.16 ohara 121:
122: tarball:
123: -rm -rf tmp
124: -mkdir tmp
125: DESTDIR=`cd tmp; pwd` ${MAKE} install-openxm
126: (cd tmp${prefix}; tar cf - * ) | gzip -c > asir-openxm-${VERSION}.tgz
127: -rm -rf tmp
1.34 ohara 128:
129: clean-gc:
130: -rm -rf ${top_srcdir}/.gc_*_done ${top_srcdir}/${GC}
131: -rm -rf ${top_srcdir}/autom4te.cache
132:
133: distclean-recursive: clean-gc
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>