source: trunk/lang/tcl/Makefile.in @ 4346

Last change on this file since 4346 was 1944, checked in by gah, 13 years ago

add unit cell to molvisviewer

File size: 1.5 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
38# The script directory is moved from src/tcl.
39
40.PHONY: src scripts tests
41
42all:
43        $(MAKE) -C src all
44        $(MAKE) -C scripts all
45
46links:
47
48install:
49        $(MKDIR_P) -m 0755 $(destdir)
50        $(INSTALL) -m 0444 pkgIndex.tcl $(destdir)
51        $(MAKE) -C src install
52        $(MAKE) -C scripts install
53        $(RM) $(bindir)/tclsh
54        (cd $(bindir); $(LN_S) tclsh$(TCL_VERSION) tclsh)
55        $(RM) $(bindir)/wish
56        (cd $(bindir); $(LN_S) wish$(TK_VERSION) wish)
57
58test:
59        $(MAKE) -C tests all
60
61clean:
62        $(MAKE) -C src clean
63        $(MAKE) -C tests clean
64        $(MAKE) -C scripts clean
65
66distclean: clean
67        $(MAKE) -C src distclean
68        $(MAKE) -C tests distclean
69        $(MAKE) -C scripts distclean
70        $(RM) Makefile
71
Note: See TracBrowser for help on using the repository browser.