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

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

1.39    ! noro        1: ## $OpenXM: OpenXM_contrib2/asir2000/Makefile.am,v 1.38 2012/08/27 05:05:58 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.32      ohara      27:            @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
                     36:
                     37: ASIRLIB  = ${BLIB} ${PLIB} ${IOLIB} ${PLLIB} ${ELIB} ${FLIB} ${ALIB}
1.32      ohara      38: LIBS     = @LIBS@ @GCLIB@ @PARILIB@ @LAPACKLIB@ ${X11LIB} ${FEPLIB} -lm ${EXTRALIBS}
1.1       ohara      39: # EXTRALIBS = @EXTRALIBS@
                     40:
1.33      ohara      41: all-recursive: ${GLIB}
                     42:
1.1       ohara      43: umain.o: parse/main.c
                     44:        ${COMPILE} -DUINIT main.c -o umain.o
                     45:
1.30      ohara      46: libasir-gc.a: ${GC_PATCH}
1.22      ohara      47:        -if [ ! -f ${top_srcdir}/.gc_fetch_done ]; then \
                     48:                if [ ! -f ${GC_DISTDIR}/${GC_TAR_GZ} ]; then \
                     49:                        ${OX_FETCH} ${GC_MASTER_SITE}${GC_TAR_GZ} ${GC_DISTDIR}; \
                     50:                fi ; \
                     51:                touch ${top_srcdir}/.gc_fetch_done ; \
                     52:        fi
                     53:        -if [ ! -f ${top_srcdir}/.gc_risa_done ]; then \
1.23      ohara      54:            (cd ${top_srcdir}; tar xzvf ${GC_DISTDIR}/${GC_TAR_GZ}) ; \
1.28      ohara      55:                for i in ${GC_PATCH} ; do \
                     56:            (cd ${top_srcdir}/${GC}; patch -p1 < ../$$i) ; \
                     57:                done ; \
1.22      ohara      58:            touch ${top_srcdir}/.gc_risa_done ; \
1.21      noro       59:        fi
1.20      ohara      60:        -if [ "${USE_GC_SPARC64}" = yes \
1.22      ohara      61:             -a ! -f ${top_srcdir}/${GC}/.patch_gc_sparc64_done ]; then \
                     62:            (cd ${top_srcdir}/${GC}; patch -p0 < ../gc_sparc64.diff) ; \
                     63:            touch ${top_srcdir}/${GC}/.patch_gc_sparc64_done ; \
1.11      ohara      64:        fi
1.22      ohara      65:        -if [ ! -f ${top_srcdir}/${GC}/.configure_done ]; then \
1.26      ohara      66:            (cd ${top_srcdir}/${GC}; ./configure ${GC_CONFIGURE_ARGS}) ; \
1.22      ohara      67:            touch ${top_srcdir}/${GC}/.configure_done ; \
1.1       ohara      68:        fi
1.22      ohara      69:        (cd ${top_srcdir}/${GC}; ${MAKE})
1.29      ohara      70:        cp ${top_srcdir}/${GC}/.libs/libgc.a $@
1.1       ohara      71:
1.30      ohara      72: libasir.a: ${ASIRLIB} ${GLIB} parse/gc_risa.c
1.1       ohara      73:        -mkdir ${top_srcdir}/libtmp
                     74:        -rm -f ${top_srcdir}/libtmp/*  ${top_srcdir}/$@
                     75:        for i in ${ASIRLIB}; do (cd ${top_srcdir}/libtmp; ar x ../$$i; chmod 644 *) done
1.29      ohara      76:        (cd ${top_srcdir}/parse; ${MAKE} gc_risa.o; cp gc_risa.o ../libtmp)
1.1       ohara      77:        (cd ${top_srcdir}/libtmp; ${AR} cq ../$@ *.o)
                     78:        (cd ${top_srcdir}; ${RANLIB} $@)
                     79:        -rm -rf ${top_srcdir}/libtmp
                     80:
1.3       ohara      81: install-libasir: libasir.a
1.17      ohara      82:        mkdir -p ${DESTDIR}${libdir}
                     83:        ${INSTALL_DATA} libasir.a ${DESTDIR}${libdir}/libasir${libasir_postfix}.a
1.4       ohara      84:
1.18      ohara      85: install-libasir-gc: libasir-gc.a
                     86:        mkdir -p ${DESTDIR}${libdir}
                     87:        ${INSTALL_DATA} libasir-gc.a ${DESTDIR}${libdir}/libasir-gc.a
                     88:
                     89: install-openxm: asir${EXEEXT} install-libasir install-libasir-gc
1.17      ohara      90:        -mkdir -p ${DESTDIR}${bindir}
                     91:        ${INSTALL_PROGRAM} asir ${DESTDIR}${bindir}
                     92:        -mkdir -p ${DESTDIR}${asirdir}
1.4       ohara      93:        (cd ${top_srcdir}/lib; ${MAKE} install-doc install-lib)
1.17      ohara      94:        -rm -f ${DESTDIR}${bindir}/ox_asir${EXEEXT}
                     95:        (cd ${DESTDIR}${bindir} ; ${LN_S} asir${EXEEXT} ox_asir${EXEEXT})
                     96:        -(cd ${DESTDIR}${asirdir}; \
1.5       ohara      97:     rm -f asir${EXEEXT} ox_asir${EXEEXT} ox_launch${EXEEXT} ox_plot${EXEEXT})
1.17      ohara      98:        (cd ${DESTDIR}${asirdir} ; \
1.5       ohara      99:        ${LN_S} ../../bin/asir${EXEEXT} asir${EXEEXT} ; \
                    100:        ${LN_S} asir${EXEEXT} ox_asir${EXEEXT} ; \
                    101:        ${LN_S} asir${EXEEXT} ox_launch${EXEEXT} ; \
                    102:        ${LN_S} asir${EXEEXT} ox_plot${EXEEXT})
1.7       ohara     103:        (cd ${top_srcdir}/include; ${MAKE} install)
1.8       ohara     104:        (cd ${top_srcdir}/parse; ${MAKE} install)
1.4       ohara     105:
                    106: install-lib:
                    107:        (cd ${top_srcdir}/lib; ${MAKE} install-lib)
1.17      ohara     108:        -(cd ${DESTDIR}${asirdir}; \
1.6       ohara     109:        rm -f ox_asir${EXEEXT} ox_launch${EXEEXT} ox_plot${EXEEXT})
1.17      ohara     110:        (cd ${DESTDIR}${asirdir} ; \
1.4       ohara     111:        ${LN_S} asir${EXEEXT} ox_asir${EXEEXT} ; \
                    112:        ${LN_S} asir${EXEEXT} ox_launch${EXEEXT} ; \
                    113:        ${LN_S} asir${EXEEXT} ox_plot${EXEEXT})
1.17      ohara     114:        -mkdir -p ${DESTDIR}${bindir}
                    115:        -rm -f ${DESTDIR}${bindir}/asir${EXEEXT}
                    116:        (cd ${DESTDIR}${bindir} ; ${LN_S} ../lib/asir/asir${EXEEXT} asir${EXEEXT})
1.4       ohara     117:
                    118: install-doc:
                    119:        (cd ${top_srcdir}/lib; ${MAKE} install-doc)
1.16      ohara     120:
                    121: tarball:
                    122:        -rm -rf tmp
                    123:        -mkdir tmp
                    124:        DESTDIR=`cd tmp; pwd` ${MAKE} install-openxm
                    125:        (cd tmp${prefix}; tar cf - * ) | gzip -c > asir-openxm-${VERSION}.tgz
                    126:        -rm -rf tmp
1.34      ohara     127:
                    128: clean-gc:
                    129:        -rm -rf ${top_srcdir}/.gc_*_done ${top_srcdir}/${GC}
                    130:        -rm -rf ${top_srcdir}/autom4te.cache
                    131:
                    132: distclean-recursive: clean-gc

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