https://github.com/geodynamics/citcoms
Revision c19bf8078589c854250e0879229714f6d31c0c52 authored by Leif Strand on 08 November 2005, 19:16:38 UTC, committed by Leif Strand on 08 November 2005, 19:16:38 UTC
in order to gain support for version 8 of the Intel compiler.

To summarize:

$ autoconf --version
autoconf (GNU Autoconf) 2.59
$ automake --version
automake (GNU automake) 1.9.2
$ libtoolize --version
libtoolize (GNU libtool) 1.5.20
$ echo $ACLOCAL
aclocal -I /PATH/TO/libtool-1.5.20/share/aclocal
$ autoreconf -i -f


1 parent a5884a5
Raw File
Tip revision: c19bf8078589c854250e0879229714f6d31c0c52 authored by Leif Strand on 08 November 2005, 19:16:38 UTC
Recreated CitcomS v2.0.1 source package with Libtool v1.5.20
Tip revision: c19bf80
Makefile.am
## Process this file with automake to produce Makefile.in
# $Id: Makefile.am,v 1.2 2005/09/20 23:33:48 leif Exp $

include $(top_srcdir)/common.am

ACLOCAL_AMFLAGS = -I ./m4

SUBDIRS = packages tests
DIST_SUBDIRS = $(SUBDIRS) examples

pyrepythondir = $(pkgpythondir)/pyre
nodist_pyrepython_PYTHON = config.py
config.py: $(top_builddir)/portinfo $(top_builddir)/Makefile
	$(PYCONFIG) -h $(top_builddir)/portinfo -m $(top_builddir)/Makefile -o $@
CLEANFILES = config.py

## end of Makefile.am
back to top