[BACK]Return to Makefile.am CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000

Annotation of OpenXM_contrib2/asir2000/Makefile.am, Revision 1.23

1.23    ! ohara       1: ## $OpenXM: OpenXM_contrib2/asir2000/Makefile.am,v 1.22 2005/07/12 14:47:13 ohara 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
                     15: asir_LDADD    = libasir.a libasir-gc.a
                     16: CLEANFILES    = ${asir_LDADD} asir-openxm-${VERSION}.tgz
                     17:
1.22      ohara      18: GC            = gc6.5
                     19: GC_TAR_GZ     = ${GC}.tar.gz
                     20: GC_DISTDIR    = @GC_DISTDIR@
                     21: GC_MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/
                     22: OX_FETCH      = ${bindir}/oxfetch.sh
1.21      noro       23:
1.17      ohara      24: DEFS     = @DEFS@ -DASIR_LIBDIR=\"${asirdir}\"
1.1       ohara      25: INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/parse -I${top_srcdir}/io \
1.22      ohara      26:            -I${top_srcdir}/${GC}/include \
1.1       ohara      27:            @PARIINC@ @MPIINC@ @X_CFLAGS@
                     28:
                     29: GLIB  = libasir-gc.a
                     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
                     36:
                     37: ASIRLIB  = ${BLIB} ${PLIB} ${IOLIB} ${PLLIB} ${ELIB} ${FLIB} ${ALIB}
                     38: LIBS     = @LIBS@ @PARILIB@ @MPILIB@ @LAPACKLIB@ ${X11LIB} ${FEPLIB} -lm ${EXTRALIBS}
                     39: # EXTRALIBS = @EXTRALIBS@
                     40:
                     41: umain.o: parse/main.c
                     42:        ${COMPILE} -DUINIT main.c -o umain.o
                     43:
1.23    ! ohara      44: libasir-gc.a: gc6.5-risa.diff parse/gc_risa.c
1.22      ohara      45:        -if [ ! -f ${top_srcdir}/.gc_fetch_done ]; then \
                     46:                if [ ! -f ${GC_DISTDIR}/${GC_TAR_GZ} ]; then \
                     47:                        ${OX_FETCH} ${GC_MASTER_SITE}${GC_TAR_GZ} ${GC_DISTDIR}; \
                     48:                fi ; \
                     49:                touch ${top_srcdir}/.gc_fetch_done ; \
                     50:        fi
                     51:        -if [ ! -f ${top_srcdir}/.gc_risa_done ]; then \
1.23    ! ohara      52:            (cd ${top_srcdir}; tar xzvf ${GC_DISTDIR}/${GC_TAR_GZ}) ; \
        !            53:            (cd ${top_srcdir}/${GC}; patch -p1 < ../gc6.5-risa.diff) ; \
1.22      ohara      54:            touch ${top_srcdir}/.gc_risa_done ; \
1.21      noro       55:        fi
1.11      ohara      56:        -if [ "${USE_GC_ZEROPAGE}" = yes \
1.22      ohara      57:             -a ! -f ${top_srcdir}/${GC}/.patch_gc_zeropage_done ]; then \
                     58:            (cd ${top_srcdir}/${GC}; patch < ../gc_zeropage.diff) ; \
                     59:            touch ${top_srcdir}/${GC}/.patch_gc_zeropage_done ; \
1.19      ohara      60:        fi
                     61:        -if [ "${USE_GC_INTERIX}" = yes \
1.22      ohara      62:             -a ! -f ${top_srcdir}/${GC}/.patch_gc_interix_done ]; then \
                     63:            (cd ${top_srcdir}/${GC}; patch -p0 < ../gc_interix.diff) ; \
                     64:            touch ${top_srcdir}/${GC}/.patch_gc_interix_done ; \
1.20      ohara      65:        fi
                     66:        -if [ "${USE_GC_SPARC64}" = yes \
1.22      ohara      67:             -a ! -f ${top_srcdir}/${GC}/.patch_gc_sparc64_done ]; then \
                     68:            (cd ${top_srcdir}/${GC}; patch -p0 < ../gc_sparc64.diff) ; \
                     69:            touch ${top_srcdir}/${GC}/.patch_gc_sparc64_done ; \
1.11      ohara      70:        fi
1.22      ohara      71:        -if [ ! -f ${top_srcdir}/${GC}/.configure_done ]; then \
1.12      ohara      72:            if [ -n "${host_alias}" ]; then \
1.22      ohara      73:                (cd ${top_srcdir}/${GC}; ./configure --host=${host_alias} --disable-threads) ; \
1.12      ohara      74:            else \
1.22      ohara      75:                (cd ${top_srcdir}/${GC}; ./configure --disable-threads) ; \
1.12      ohara      76:            fi ; \
1.22      ohara      77:            touch ${top_srcdir}/${GC}/.configure_done ; \
1.1       ohara      78:        fi
1.22      ohara      79:        (cd ${top_srcdir}/${GC}; ${MAKE})
                     80:        cp ${top_srcdir}/${GC}/.libs/libgc.a ${GLIB}
1.13      ohara      81:        (cd ${top_srcdir}/parse; ${MAKE} gc_risa.o)
                     82:        ${AR} q ${GLIB} ${top_srcdir}/parse/gc_risa.o
                     83:        ${RANLIB} ${GLIB}
1.1       ohara      84:
                     85: libasir.a: ${ASIRLIB}
                     86:        -mkdir ${top_srcdir}/libtmp
                     87:        -rm -f ${top_srcdir}/libtmp/*  ${top_srcdir}/$@
                     88:        for i in ${ASIRLIB}; do (cd ${top_srcdir}/libtmp; ar x ../$$i; chmod 644 *) done
                     89:        (cd ${top_srcdir}/libtmp; ${AR} cq ../$@ *.o)
                     90:        (cd ${top_srcdir}; ${RANLIB} $@)
                     91:        -rm -rf ${top_srcdir}/libtmp
                     92:
                     93: #asir.o: umain.o ${ASIRLIB} ${GLIB}
                     94: #      -rm $@
                     95: #      ld -r $@ umain.o ${ASIRLIB} ${GLIB} ${LIBS} ${EXTRALIBS}
                     96:
1.3       ohara      97: install-libasir: libasir.a
1.17      ohara      98:        mkdir -p ${DESTDIR}${libdir}
                     99:        ${INSTALL_DATA} libasir.a ${DESTDIR}${libdir}/libasir${libasir_postfix}.a
1.4       ohara     100:
1.18      ohara     101: install-libasir-gc: libasir-gc.a
                    102:        mkdir -p ${DESTDIR}${libdir}
                    103:        ${INSTALL_DATA} libasir-gc.a ${DESTDIR}${libdir}/libasir-gc.a
                    104:
                    105: install-openxm: asir${EXEEXT} install-libasir install-libasir-gc
1.17      ohara     106:        -mkdir -p ${DESTDIR}${bindir}
                    107:        ${INSTALL_PROGRAM} asir ${DESTDIR}${bindir}
                    108:        -mkdir -p ${DESTDIR}${asirdir}
1.4       ohara     109:        (cd ${top_srcdir}/lib; ${MAKE} install-doc install-lib)
1.17      ohara     110:        -rm -f ${DESTDIR}${bindir}/ox_asir${EXEEXT}
                    111:        (cd ${DESTDIR}${bindir} ; ${LN_S} asir${EXEEXT} ox_asir${EXEEXT})
                    112:        -(cd ${DESTDIR}${asirdir}; \
1.5       ohara     113:     rm -f asir${EXEEXT} ox_asir${EXEEXT} ox_launch${EXEEXT} ox_plot${EXEEXT})
1.17      ohara     114:        (cd ${DESTDIR}${asirdir} ; \
1.5       ohara     115:        ${LN_S} ../../bin/asir${EXEEXT} asir${EXEEXT} ; \
                    116:        ${LN_S} asir${EXEEXT} ox_asir${EXEEXT} ; \
                    117:        ${LN_S} asir${EXEEXT} ox_launch${EXEEXT} ; \
                    118:        ${LN_S} asir${EXEEXT} ox_plot${EXEEXT})
1.7       ohara     119:        (cd ${top_srcdir}/include; ${MAKE} install)
1.8       ohara     120:        (cd ${top_srcdir}/parse; ${MAKE} install)
1.4       ohara     121:
                    122: install-lib:
                    123:        (cd ${top_srcdir}/lib; ${MAKE} install-lib)
1.17      ohara     124:        -(cd ${DESTDIR}${asirdir}; \
1.6       ohara     125:        rm -f ox_asir${EXEEXT} ox_launch${EXEEXT} ox_plot${EXEEXT})
1.17      ohara     126:        (cd ${DESTDIR}${asirdir} ; \
1.4       ohara     127:        ${LN_S} asir${EXEEXT} ox_asir${EXEEXT} ; \
                    128:        ${LN_S} asir${EXEEXT} ox_launch${EXEEXT} ; \
                    129:        ${LN_S} asir${EXEEXT} ox_plot${EXEEXT})
1.17      ohara     130:        -mkdir -p ${DESTDIR}${bindir}
                    131:        -rm -f ${DESTDIR}${bindir}/asir${EXEEXT}
                    132:        (cd ${DESTDIR}${bindir} ; ${LN_S} ../lib/asir/asir${EXEEXT} asir${EXEEXT})
1.4       ohara     133:
                    134: install-doc:
                    135:        (cd ${top_srcdir}/lib; ${MAKE} install-doc)
1.16      ohara     136:
                    137: tarball:
                    138:        -rm -rf tmp
                    139:        -mkdir tmp
                    140:        DESTDIR=`cd tmp; pwd` ${MAKE} install-openxm
                    141:        (cd tmp${prefix}; tar cf - * ) | gzip -c > asir-openxm-${VERSION}.tgz
                    142:        -rm -rf tmp

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>