source: trunk/src/Makefile.in @ 6694

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

add unit cell to molvisviewer

File size: 1.3 KB
RevLine 
[489]1
[942]2bindir          = @bindir@
[951]3datadir         = @datadir@
4datarootdir     = @datarootdir@
[708]5exec_prefix     = @exec_prefix@
[942]6includedir      = @includedir@
[708]7libdir          = @libdir@
8mandir          = @mandir@
[942]9prefix          = @prefix@
[489]10
[942]11INSTALL         = @INSTALL@
[708]12INSTALL_PROGRAM = ${INSTALL} -m 755
13INSTALL_DATA    = ${INSTALL} -m 644
14INSTALL_SCRIPT  = ${INSTALL}
15
[1018]16CXX             = @CXX@
[489]17CC              = @CC@
[1018]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@
[489]28
[1018]29RANLIB          = @RANLIB@
[1082]30MKDIR_P         = @MKDIR_P@
[1018]31AR              = ar
32RM              = rm -f
[489]33
[1018]34.PHONY: core core2 objects
[489]35
[1018]36all:    core core2 objects
[489]37
[1228]38RAPPTURE_LIB = core/librappture.a
39
[1371]40core:
[1018]41        $(MAKE) -C core all
[1228]42
[1371]43core2: core
[1018]44        $(MAKE) -C core2 all
[1228]45
[1371]46objects: core
[1018]47        $(MAKE) -C objects all
[489]48
[1371]49install: core
[1018]50        $(MAKE) -C core install
51        $(MAKE) -C core2 install
52        $(MAKE) -C objects install
[489]53
54docs:
[1944]55        $(MKDIR_P) -m 0755 docs/doxygen
[489]56        doxygen
57
58clean:
[1018]59        $(MAKE) -C core clean
60        $(MAKE) -C core2 clean
61        $(MAKE) -C objects clean
[489]62
63distclean: clean
[1018]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.