Revision 63b41551c1e94567ff90c7a256d150bda6da2c50 authored by Leif Strand on 28 November 2006, 23:28:36 UTC, committed by Leif Strand on 28 November 2006, 23:28:36 UTC
transition.

Using a pidXXXX.cfg file as input should "work" now, although it still
doesn't reproduce the original simulation, since at least one
parameter is missing ('steps').  I maintain that dumping the
configuration is really the job of the framework (Pyre).
Unfortunately, Pyre's current capabilities in this area are buggy in
the case of '.pml' files, and non-existent in the case of '.cfg'
files.

Note: 'nproc_surf' is now a real inventory item, instead of a fake
one.  It looks like it doesn't belong in the inventory at all, though.
(I left it there to avoid breakage.)

1 parent 08658cd
Raw File
Makefile.am
## Process this file with automake to produce Makefile.in
##
##<LicenseText>
##
## CitcomS.py by Eh Tan, Eun-seo Choi, and Pururav Thoutireddy.
## Copyright (C) 2002-2005, California Institute of Technology.
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
##
##</LicenseText>

# $Id$

SUBDIRS = OpenDXMacro

SUFFIXES = .net.in .net

visualdir = $(pkgdatadir)/visual
dxmacrodir = $(visualdir)/OpenDXMacro
abs_builddir = @abs_builddir@

dist_bin_SCRIPTS = \
	autocombine.py \
	batchcombine.py \
	batchpaste.sh \
	batchsurf.py \
	combine.py \
	combinesurf.py \
	dxgeneral.sh \
	dxgeneralsurf.sh \
	estimate.py \
	execpaste.py \
	getcoord.sh \
	getlog.sh \
	getsurf.sh \
	h5tocap.py \
	miff2avi \
	miff2mpg \
	parser.py \
	pasteCitcomData.sh \
	plot_annulus.py \
	plot_layer.py \
	zslice.py

nobase_dist_visual_DATA = \
	samples/fulltest.cap00.100 \
	samples/fulltest.cap00.100.general \
	samples/fulltest.cap01.100 \
	samples/fulltest.cap01.100.general \
	samples/fulltest.cap02.100 \
	samples/fulltest.cap02.100.general \
	samples/fulltest.cap03.100 \
	samples/fulltest.cap03.100.general \
	samples/fulltest.cap04.100 \
	samples/fulltest.cap04.100.general \
	samples/fulltest.cap05.100 \
	samples/fulltest.cap05.100.general \
	samples/fulltest.cap06.100 \
	samples/fulltest.cap06.100.general \
	samples/fulltest.cap07.100 \
	samples/fulltest.cap07.100.general \
	samples/fulltest.cap08.100 \
	samples/fulltest.cap08.100.general \
	samples/fulltest.cap09.100 \
	samples/fulltest.cap09.100.general \
	samples/fulltest.cap10.100 \
	samples/fulltest.cap10.100.general \
	samples/fulltest.cap11.100 \
	samples/fulltest.cap11.100.general \
	samples/regtest.cap00.100 \
	samples/regtest.cap00.100.general \
	visFull.cfg \
	visRegional.cfg \
	visRegionalSurface.cfg

nodist_visual_DATA = \
	visFull.net \
	visRegional.net \
	visRegionalSurface.net

visual_templates = \
	visFull.net.in \
	visRegional.net.in \
	visRegionalSurface.net.in

do_build = sed -e s:[@]dxmacrodir[@]:$(abs_builddir)/OpenDXMacro:g
do_install = sed -e s:[@]dxmacrodir[@]:$(dxmacrodir):g

.net.in.net:
	$(do_build) $< > $@ || (rm -f $@ && exit 1)

install-nodist_visualDATA: $(nodist_visual_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(visualdir)" || $(mkdir_p) "$(DESTDIR)$(visualdir)"
	@list='$(nodist_visual_DATA)'; for p in $$list; do \
	  if test -f "$$p.in"; then d=; else d="$(srcdir)/"; fi; \
	  f=$(am__strip_dir) \
	  echo " $(do_install) '$$d$$p.in' > '$(DESTDIR)$(visualdir)/$$f'"; \
	  $(do_install) "$$d$$p.in" > "$(DESTDIR)$(visualdir)/$$f"; \
	  echo " chmod 644 '$(DESTDIR)$(visualdir)/$$f'"; \
	  chmod 644 "$(DESTDIR)$(visualdir)/$$f"; \
	done

if COND_HDF5
    bin_PROGRAMS = h5tocap h5steps
    h5tocap_SOURCES = h5tocap.c
    h5steps_SOURCES = h5steps.c
endif

CLEANFILES = $(nodist_visual_DATA)
EXTRA_DIST = $(visual_templates)

## end of Makefile.am
back to top