root/juggler/branches/2.2/modules/vapor/Makefile.pre.in

Revision 21069, 2.5 kB (checked in by patrick, 8 months ago)

MFT r21067: Handle Boost 1.35 where the new library Boost.System is a

dependency of Boost.Filesystem.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # ************** <auto-copyright.pl BEGIN do not edit this line> **************
2 #
3 # VR Juggler is (C) Copyright 1998-2007 by Iowa State University
4 #
5 # Original Authors:
6 #   Allen Bierbaum, Christopher Just,
7 #   Patrick Hartling, Kevin Meinert,
8 #   Carolina Cruz-Neira, Albert Baker
9 #
10 # This library is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Library General Public
12 # License as published by the Free Software Foundation; either
13 # version 2 of the License, or (at your option) any later version.
14 #
15 # This library is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 # Library General Public License for more details.
19 #
20 # You should have received a copy of the GNU Library General Public
21 # License along with this library; if not, write to the
22 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 # Boston, MA 02111-1307, USA.
24 #
25 # *************** <auto-copyright.pl END do not edit this line> ***************
26
27 .NOTPARALLEL: Makefile
28
29 default: debug ;
30
31 srcdir=         @srcdir@
32 top_srcdir=     @top_srcdir@
33
34 CONFIGURE_ARGS= @CONFIGURE_ARGS@
35 CFG_SHELL=      @CFG_SHELL@
36
37 DPP_CFG_DIR=    $(top_srcdir)/Doozer++/config
38 DPP_PKG_DIR=    $(top_srcdir)/Doozer++/config/pkgs
39 VJ_M4_DIR=      $(top_srcdir)/macros
40 EXT_M4_DIR=     $(top_srcdir)/external/macros
41
42 DPP_CFG_DEPS=   abi.m4 basic_progs.m4 cplusplus.m4 dynload.m4 gcc.m4    \
43                 general.m4 install.m4 linker.m4 perl.m4 pthreads.m4     \
44                 sys.m4 types.m4 win32.m4
45 DPP_PKG_DEPS=   boost.m4 cppunit.m4 nspr.m4
46 VJ_M4_DEPS=     vrj-helpers.m4
47
48 M4_DEPS=        $(addprefix $(DPP_CFG_DIR)/, $(DPP_CFG_DEPS))           \
49                 $(addprefix $(DPP_PKG_DIR)/, $(DPP_PKG_DEPS))           \
50                 $(addprefix $(VJ_M4_DIR)/, $(VJ_M4_DEPS))
51
52 vpath configure $(srcdir)
53 vpath %.ac $(srcdir)
54 vpath %.in $(srcdir)
55
56 # These are necessary to deal with the last-resort rule at the end of the file.
57 Makefile.pre: ;
58 configure.ac: ;
59 Makefile.in: ;
60 Makefile.inc.in: ;
61 make.defs.mk.in: ;
62 vpr.fpc.in: ;
63 boost.fpc.in: ;
64 boost_system.fpc.in: ;
65 boost_filesystem.fpc.in: ;
66 boost_signals.fpc.in: ;
67 $(M4_DEPS): ;
68 $(srcdir)/VERSION: ;
69
70 configure: configure.ac $(M4_DEPS)
71         cd $(srcdir) && ./autogen.sh
72
73 config.status: configure ;
74
75 Makefile: $(srcdir)/VERSION configure config.status Makefile.in         \
76           Makefile.inc.in make.defs.mk.in vpr.fpc.in boost.fpc.in       \
77           boost_system.fpc.in boost_filesystem.fpc.in boost_signals.fpc.in
78         $(CFG_SHELL) $(srcdir)/configure $(CONFIGURE_ARGS)
79         @$(MAKE) -f Makefile cleandepend
80
81 %:: Makefile
82         @$(MAKE) -f Makefile $@
Note: See TracBrowser for help on using the browser.