source: trunk/examples/zoo/loader2/Makefile.in @ 6683

Last change on this file since 6683 was 6683, checked in by dkearney, 7 years ago

adding an example of using a loader to allow users to chose an example excel spreadsheet or upload their own. the uploaded file data is stored in the driver.xml. the simulation checks whether the user chose an example excel spreadsheet or uploaded thier own. if the user uploaded their own file, we write it to disk, then parse it using a pandas dataframe and finally load it into a Rappture Curve.

File size: 873 bytes
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9srcdir          = @srcdir@
10prefix          = @prefix@
11
12INSTALL         = @INSTALL@
13MKDIR_P         = @MKDIR_P@
14VPATH           = $(srcdir)
15RM              = rm -f
16
17FILES           = \
18                $(srcdir)/dampedcosinewave.xlsx \
19                $(srcdir)/expdecay.xlsx \
20                $(srcdir)/loadxls.py \
21                $(srcdir)/sinewave.xlsx \
22                $(srcdir)/tool.xml \
23
24destdir         = $(prefix)/examples/zoo/loader2
25
26.PHONY: all install clean distclean
27
28all:
29        $(MAKE) -C examples  all
30
31install:
32        $(MKDIR_P) -m 0755 $(destdir)
33        for i in $(FILES) ; do \
34          $(INSTALL) -m 0444  $$i $(destdir) ; \
35        done
36        $(MAKE) -C examples install
37
38clean:
39        $(MAKE) -C examples clean
40
41distclean:
42        $(MAKE) -C examples distclean
43        $(RM) Makefile *~
Note: See TracBrowser for help on using the repository browser.