source: branches/1.7/src/Makefile.in @ 6705

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

add unit cell to molvisviewer

File size: 1.3 KB
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10
11INSTALL         = @INSTALL@
12INSTALL_PROGRAM = ${INSTALL} -m 755
13INSTALL_DATA    = ${INSTALL} -m 644
14INSTALL_SCRIPT  = ${INSTALL}
15
16CXX             = @CXX@
17CC              = @CC@
18CFLAGS_DEBUG    = @CFLAGS_DEBUG@
19CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@
20STLIB_LD        = @STLIB_LD@
21SHLIB_LD        = @SHLIB_LD@
22SHLIB_CFLAGS    = @SHLIB_CFLAGS@
23SHLIB_LDFLAGS   = @SHLIB_LDFLAGS@
24SHLIB_SUFFIX    = @SHLIB_SUFFIX@
25CFLAGS_DEFAULT  = @CFLAGS_DEFAULT@
26LIB_SEARCH_DIRS = @LIB_SEARCH_DIRS@
27CFLAGS          = @CFLAGS@
28
29RANLIB          = @RANLIB@
30MKDIR_P         = @MKDIR_P@
31AR              = ar
32RM              = rm -f
33
34.PHONY: core core2 objects
35
36all:    core core2 objects
37
38RAPPTURE_LIB = core/librappture.a
39
40core:
41        $(MAKE) -C core all
42
43core2: core
44        $(MAKE) -C core2 all
45
46objects: core
47        $(MAKE) -C objects all
48
49install: core
50        $(MAKE) -C core install
51        $(MAKE) -C core2 install
52        $(MAKE) -C objects install
53
54docs:
55        $(MKDIR_P) -m 0755 docs/doxygen
56        doxygen
57
58clean:
59        $(MAKE) -C core clean
60        $(MAKE) -C core2 clean
61        $(MAKE) -C objects clean
62
63distclean: clean
64        $(MAKE) -C core distclean
65        $(MAKE) -C core2 distclean
66        $(MAKE) -C objects distclean
67        $(RM) Makefile
Note: See TracBrowser for help on using the repository browser.