source: tags/1.1-pre/src/Makefile.in @ 3618

Last change on this file since 3618 was 1018, checked in by gah, 16 years ago

Massive changes: New directory/file layout

File size: 1.2 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@
30AR              = ar
31RM              = rm -f
32
33.PHONY: core core2 objects
34
35all:    core core2 objects
36
37core:
38        $(MAKE) -C core all
39core2:
40        $(MAKE) -C core2 all
41objects:
42        $(MAKE) -C objects all
43
44install:
45        $(MAKE) -C core install
46        $(MAKE) -C core2 install
47        $(MAKE) -C objects install
48
49docs:
50        $(INSTALL) -d docs/doxygen
51        doxygen
52
53clean:
54        $(MAKE) -C core clean
55        $(MAKE) -C core2 clean
56        $(MAKE) -C objects clean
57
58distclean: clean
59        $(MAKE) -C core distclean
60        $(MAKE) -C core2 distclean
61        $(MAKE) -C objects distclean
62        $(RM) Makefile
Note: See TracBrowser for help on using the repository browser.