Ignore:
Timestamp:
Apr 6, 2009, 3:16:39 PM (16 years ago)
Author:
dkearney
Message:

adding a few object prototypes we can play with for future developement. the plot object is probably the most interesting. examples are located in examples/objects dirs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/objects/Makefile.in

    r1100 r1386  
    11
    22bindir          = @bindir@
    3 datadir         = @datadir@
    4 datarootdir     = @datarootdir@
     3datadir         = @datadir@
     4datarootdir     = @datarootdir@
    55exec_prefix     = @exec_prefix@
    66includedir      = @includedir@
    77libdir          = @libdir@
    88mandir          = @mandir@
    9 srcdir          = @srcdir@
     9srcdir          = @srcdir@
    1010prefix          = @prefix@
    1111
    12 INSTALL         = @INSTALL@
    13 INSTALL_DATA    = @INSTALL_DATA@
    14 VPATH           = $(srcdir)
    15 RM              = rm -f
     12INSTALL         = @INSTALL@
     13INSTALL_DATA    = @INSTALL_DATA@
     14VPATH           = $(srcdir)
     15RM              = rm -f
    1616
    17 examples        = \
     17examples   = \
     18                axis \
     19                curve \
    1820                dxWriter \
    19                 floatBuffer
     21                floatBuffer \
     22                number \
     23                plot \
     24                string
    2025
    21 destdir         = $(prefix)/examples/objects
     26destdir    = $(prefix)/examples/objects
    2227
    23 all: 
     28all:
    2429        for i in $(examples) ; do \
    2530          $(MAKE) -C $$i all || exit 1; \
    2631        done
    2732
    28 install: 
     33install:
    2934        for i in $(examples) ; do \
    3035          $(MAKE) -C $$i install || exit 1; \
     
    3641        done
    3742
    38 distclean: 
     43distclean:
    3944        for i in $(examples) ; do \
    4045          $(MAKE) -C $$i distclean; \
Note: See TracChangeset for help on using the changeset viewer.