source: branches/blt4/lang/tcl/Makefile.in @ 1948

Last change on this file since 1948 was 1948, checked in by gah, 14 years ago

add unit cell to molvisviewer

File size: 1.6 KB
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10
11destdir         = $(libdir)/Rappture$(PACKAGE_VERSION)
12
13PACKAGE_VERSION = @PACKAGE_VERSION@
14
15INSTALL         = @INSTALL@
16
17CXX             = @CXX@
18CC              = @CC@
19CFLAGS_DEBUG    = @CFLAGS_DEBUG@
20CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@
21STLIB_LD        = @STLIB_LD@
22SHLIB_LD        = @SHLIB_LD@
23SHLIB_CFLAGS    = @SHLIB_CFLAGS@
24SHLIB_LDFLAGS   = @SHLIB_LDFLAGS@
25SHLIB_SUFFIX    = @SHLIB_SUFFIX@
26CFLAGS_DEFAULT  = @CFLAGS_DEFAULT@
27LIB_SEARCH_DIRS = @LIB_SEARCH_DIRS@
28CFLAGS          = @CFLAGS@
29TCL_VERSION     = @TCL_VERSION@
30TK_VERSION      = @TK_VERSION@
31
32RANLIB          = @RANLIB@
33MKDIR_P         = @MKDIR_P@
34AR              = ar
35LN_S            = @LN_S@
36RM              = rm -f
37
38tcllib          = $$RAPPTURE_INSTALL_DIR/lib/tcl$(TCL_VERSION)
39tklib           = $$RAPPTURE_INSTALL_DIR/lib/tk$(TK_VERSION)
40
41# The script directory is moved from src/tcl.
42
43.PHONY: src scripts tests
44
45all:
46        $(MAKE) -C src all
47        $(MAKE) -C scripts all
48
49links:
50
51install:
52        $(MKDIR_P) -m 0755 $(destdir)
53        $(INSTALL) -m 0444 pkgIndex.tcl $(destdir)
54        $(MAKE) -C src install
55        $(MAKE) -C scripts install
56        $(RM) $(bindir)/tclsh
57        (cd $(bindir); $(LN_S) tclsh$(TCL_VERSION) tclsh)
58        $(RM) $(bindir)/wish
59        (cd $(bindir); $(LN_S) wish$(TK_VERSION) wish)
60
61test:
62        $(MAKE) -C tests all
63
64clean:
65        $(MAKE) -C src clean
66        $(MAKE) -C tests clean
67        $(MAKE) -C scripts clean
68
69distclean: clean
70        $(MAKE) -C src distclean
71        $(MAKE) -C tests distclean
72        $(MAKE) -C scripts distclean
73        $(RM) Makefile
74
Note: See TracBrowser for help on using the repository browser.