source: trunk/gui/apps/Makefile.in @ 1159

Last change on this file since 1159 was 1159, checked in by dkearney, 16 years ago

updated driver to allow the user to revisualize old run files just as rerun did. if driver can find the tool.xml file and where the application is installed, it can also allow the user to run new simulations after preloading old simulations.

Finally figured out where the current tags in group objects were coming from. controlOwner was adjusted to stop putting current tags in things. this only seemed to happen when the application also contained a loader, because we were doing an xml copy of nodes.

rewrote rerun to be a small wrapper around the "driver -load" command. rerun is now a script like rappture, it is populated with rappture's install directory from configure, so configure.in was updated. added some stuff for finding mcc in the configure.in script for a future commit

changed Rappture::Analyzer to accept -notebookpage configure flag so we can specify which page of the analyzer notebook should be currently showing. also inside of the analyzer, changed behavior of simstatus to allow us to still show a message even if the simulation button is disabled. this is helpful because we can tell the user why the simulation button is grayed out. one example of this is the case when we load old run.xml files, but cannot find a tool.xml file. the user cannot run a simulation, even if they change an input, because we can't figure out where the app is installed. now we can tell the user, why they cannot run the simulation.

File size: 853 bytes
Line 
1
2SHELL           = @SHELL@
3
4srcdir          = @srcdir@
5prefix          = @prefix@
6exec_prefix     = @exec_prefix@
7bindir          = @bindir@
8libdir          = @libdir@
9datadir         = @datadir@
10datarootdir     = @datarootdir@
11mandir          = @mandir@
12includedir      = @includedir@
13
14pkgdatadir      = $(datadir)/$(PKG_DIR)
15pkglibdir       = $(libdir)/$(PKG_DIR)
16pkgincludedir   = $(includedir)/$(PKG_DIR)
17top_builddir    = .
18
19MKDIR_P         = @MKDIR_P@
20INSTALL         = @INSTALL@
21
22SCRIPTS = \
23                $(srcdir)/driver \
24                $(srcdir)/grabdata \
25                $(srcdir)/nanovis-test \
26                rappture \
27                rappture.env \
28                rerun \
29                simsim  \
30                about
31
32WINDOWS_SCRIPTS =  \
33                $(srcdir)/rappture.cmd \
34                $(srcdir)/driver.cmd \
35                $(srcdir)/rerun.cmd
36
37all:
38
39install:
40        $(MKDIR_P) $(bindir)
41        @for i in $(SCRIPTS); do \
42            echo "Installing $$i" ; \
43            $(INSTALL) -m 555 $$i $(bindir) ; \
44        done
45
46clean:
47
48distclean: clean
49        $(RM) rappture.env rappture simsim
50        $(RM) Makefile *~
51
Note: See TracBrowser for help on using the repository browser.