version 1.20, 2003/03/24 11:30:38 |
version 1.25, 2005/07/12 12:57:54 |
Line 78 PACKAGE = @PACKAGE@ |
|
Line 78 PACKAGE = @PACKAGE@ |
|
PARIINC = @PARIINC@ |
PARIINC = @PARIINC@ |
PARILIB = @PARILIB@ |
PARILIB = @PARILIB@ |
RANLIB = @RANLIB@ |
RANLIB = @RANLIB@ |
|
USE_GC_INTERIX = @USE_GC_INTERIX@ |
|
USE_GC_SPARC64 = @USE_GC_SPARC64@ |
USE_GC_ZEROPAGE = @USE_GC_ZEROPAGE@ |
USE_GC_ZEROPAGE = @USE_GC_ZEROPAGE@ |
VERSION = @VERSION@ |
VERSION = @VERSION@ |
XPMLIB = @XPMLIB@ |
XPMLIB = @XPMLIB@ |
Line 105 asir_SOURCES = parse/main.c |
|
Line 107 asir_SOURCES = parse/main.c |
|
asir_LDADD = libasir.a libasir-gc.a |
asir_LDADD = libasir.a libasir-gc.a |
CLEANFILES = ${asir_LDADD} asir-openxm-${VERSION}.tgz |
CLEANFILES = ${asir_LDADD} asir-openxm-${VERSION}.tgz |
|
|
|
gc = gc6.5 |
|
|
DEFS = @DEFS@ -DASIR_LIBDIR=\"${asirdir}\" |
DEFS = @DEFS@ -DASIR_LIBDIR=\"${asirdir}\" |
INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/parse -I${top_srcdir}/io \ |
INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/parse -I${top_srcdir}/io \ |
-I${top_srcdir}/gc/include \ |
-I${top_srcdir}/${gc}/include \ |
@PARIINC@ @MPIINC@ @X_CFLAGS@ |
@PARIINC@ @MPIINC@ @X_CFLAGS@ |
|
|
|
|
Line 485 uninstall-info: uninstall-info-recursive |
|
Line 489 uninstall-info: uninstall-info-recursive |
|
umain.o: parse/main.c |
umain.o: parse/main.c |
${COMPILE} -DUINIT main.c -o umain.o |
${COMPILE} -DUINIT main.c -o umain.o |
|
|
libasir-gc.a: parse/gc_risa.c |
libasir-gc.a: ${gc}.tar.gz ${gc}-risa.diff parse/gc_risa.c |
|
-if [ ! -f ${top_srcdir}/.gc-risa_done ]; then \ |
|
(cd ${top_srcdir}; tar xzvf ${gc}.tar.gz; patch -p0 < ${gc}-risa.diff) ; \ |
|
touch ${top_srcdir}/.gc-risa_done ; \ |
|
fi |
-if [ "${USE_GC_ZEROPAGE}" = yes \ |
-if [ "${USE_GC_ZEROPAGE}" = yes \ |
-a ! -f ${top_srcdir}/gc/.patch_gc_zeropage_done ]; then \ |
-a ! -f ${top_srcdir}/${gc}/.patch_gc_zeropage_done ]; then \ |
(cd ${top_srcdir}/gc; patch < ../gc_zeropage.diff) ; \ |
(cd ${top_srcdir}/${gc}; patch < ../gc_zeropage.diff) ; \ |
touch ${top_srcdir}/gc/.patch_gc_zeropage_done ; \ |
touch ${top_srcdir}/${gc}/.patch_gc_zeropage_done ; \ |
fi |
fi |
-if [ ! -f ${top_srcdir}/gc/.configure_done ]; then \ |
-if [ "${USE_GC_INTERIX}" = yes \ |
|
-a ! -f ${top_srcdir}/${gc}/.patch_gc_interix_done ]; then \ |
|
(cd ${top_srcdir}/${gc}; patch -p0 < ../gc_interix.diff) ; \ |
|
touch ${top_srcdir}/${gc}/.patch_gc_interix_done ; \ |
|
fi |
|
-if [ "${USE_GC_SPARC64}" = yes \ |
|
-a ! -f ${top_srcdir}/${gc}/.patch_gc_sparc64_done ]; then \ |
|
(cd ${top_srcdir}/${gc}; patch -p0 < ../gc_sparc64.diff) ; \ |
|
touch ${top_srcdir}/${gc}/.patch_gc_sparc64_done ; \ |
|
fi |
|
-if [ ! -f ${top_srcdir}/${gc}/.configure_done ]; then \ |
if [ -n "${host_alias}" ]; then \ |
if [ -n "${host_alias}" ]; then \ |
(cd ${top_srcdir}/gc; ./configure --host=${host_alias} --disable-threads) ; \ |
(cd ${top_srcdir}/${gc}; ./configure --host=${host_alias} --disable-threads) ; \ |
else \ |
else \ |
(cd ${top_srcdir}/gc; ./configure --disable-threads) ; \ |
(cd ${top_srcdir}/${gc}; ./configure --disable-threads) ; \ |
fi ; \ |
fi ; \ |
touch ${top_srcdir}/gc/.configure_done ; \ |
touch ${top_srcdir}/${gc}/.configure_done ; \ |
fi |
fi |
(cd ${top_srcdir}/gc; ${MAKE}) |
(cd ${top_srcdir}/${gc}; ${MAKE}) |
cp ${top_srcdir}/gc/.libs/libgc.a ${GLIB} |
cp ${top_srcdir}/${gc}/.libs/libgc.a ${GLIB} |
(cd ${top_srcdir}/parse; ${MAKE} gc_risa.o) |
(cd ${top_srcdir}/parse; ${MAKE} gc_risa.o) |
${AR} q ${GLIB} ${top_srcdir}/parse/gc_risa.o |
${AR} q ${GLIB} ${top_srcdir}/parse/gc_risa.o |
${RANLIB} ${GLIB} |
${RANLIB} ${GLIB} |