source: trunk/examples/objects/Makefile.in @ 1645

Last change on this file since 1645 was 1566, checked in by dkearney, 15 years ago

updates to Rappture::Library and Rappture::Number objects to demo how the library should store objects and generate the xml for those objects upon request. opting for configure() and dump() functions for objects. the object should know how to configure it self from a string of xml, tree object or (in the future) blob of hdf5. added some rudimentary examples of using the library object.

File size: 906 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@
13INSTALL_DATA    = @INSTALL_DATA@
14VPATH           = $(srcdir)
15RM              = rm -f
16
17#               dxReader \
18#               dxWriter \
19
20examples = \
21                axis \
22                curve \
23                floatBuffer \
24                histogram \
25                library \
26                number \
27                path \
28                plot \
29                string \
30                tree \
31                xmlparser
32
33destdir    = $(prefix)/examples/objects
34
35all:
36        for i in $(examples) ; do \
37          $(MAKE) -C $$i all || exit 1; \
38        done
39
40install:
41        for i in $(examples) ; do \
42          $(MAKE) -C $$i install || exit 1; \
43        done
44
45clean:
46        for i in $(examples) ; do \
47          $(MAKE) -C $$i clean; \
48        done
49
50distclean:
51        for i in $(examples) ; do \
52          $(MAKE) -C $$i distclean; \
53        done
54        $(RM) Makefile *~
Note: See TracBrowser for help on using the repository browser.