source: trunk/examples/mapviewer/camera/Makefile.in @ 6209

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

adding mapviewer examples from rappture-bat

File size: 689 bytes
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/camera
17FILES           = \
18                  $(srcdir)/camera_example.tcl \
19                  $(srcdir)/camera_zoom_layer_example.tcl
20
21all:
22
23install:
24        $(MKDIR_P) -m 0755 $(destdir)
25        for i in $(FILES) ; do \
26          $(INSTALL) -m 0444  $$i $(destdir) ; \
27        done
28
29clean:
30
31distclean: clean
32        $(RM) Makefile
33
Note: See TracBrowser for help on using the repository browser.