source: trunk/examples/mapviewer/feature/Makefile.in

Last change on this file was 6370, checked in by dkearney, 8 years ago

adding feature multiple selection examples, not all ideas work right now.
using the afr_elas shapefile because they include country elasticity values from the landuse tool.
adding an example of using large stylesheets with multiple colors.
adding example of performing multiple selection by:

  1. deleting and adding a layer by the same name
  2. using a callback
  3. updating a layer with map object's addSelector method and mapviewer's refresh method.
File size: 1.1 KB
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10srcdir          = @srcdir@
11
12INSTALL         = @INSTALL@
13MKDIR_P         = @MKDIR_P@
14VPATH           = @srcdir@
15
16destdir         = $(prefix)/examples/mapviewer/feature
17FILES           = \
18                  $(srcdir)/afr_elas.dbf \
19                  $(srcdir)/afr_elas.prj \
20                  $(srcdir)/afr_elas.shp \
21                  $(srcdir)/afr_elas.shx \
22                  $(srcdir)/feature_layer_26_colors.tcl \
23                  $(srcdir)/feature_multiple_selection_by_callback.tcl \
24                  $(srcdir)/feature_multiple_selection_by_new_layer.tcl \
25                  $(srcdir)/feature_multiple_selection_by_updated_layer.tcl \
26                  $(srcdir)/feature_selector_query.tcl
27
28all:
29
30install:
31        $(MKDIR_P) -m 0755 $(destdir)
32        for i in $(FILES) ; do \
33          $(INSTALL) -m 0444  $$i $(destdir) ; \
34        done
35
36clean:
37
38distclean: clean
39        $(RM) Makefile
40
Note: See TracBrowser for help on using the repository browser.