root/juggler/branches/2.0/external/Makefile.pre.in

Revision 17604, 2.2 kB (checked in by anonymous, 4 years ago)

This commit was manufactured by cvs2svn to create branch
'VRJ_RELENG_2_0_BRANCH'.

  • 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-2005 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 # -----------------------------------------------------------------
26 # File:          $RCSfile$
27 # Date modified: $Date$
28 # Version:       $Revision$
29 # -----------------------------------------------------------------
30 #
31 # *************** <auto-copyright.pl END do not edit this line> ***************
32
33 .NOTPARALLEL: Makefile
34
35 default: debug ;
36
37 srcdir=         @srcdir@
38 top_srcdir=     @top_srcdir@
39
40 CONFIGURE_ARGS= @CONFIGURE_ARGS@
41 CFG_SHELL=      @CFG_SHELL@
42
43 DPP_CFG_DIR=    $(top_srcdir)/Doozer++/config
44 DPP_PKG_DIR=    $(top_srcdir)/Doozer++/config/pkgs
45 VJ_M4_DIR=      $(top_srcdir)/macros
46
47 DPP_CFG_DEPS=   abi.m4 basic_progs.m4 general.m4 install.m4 perl.m4     \
48                 sys.m4 win32.m4
49 VJ_M4_DEPS=     vrj-helpers.m4
50
51 M4_DEPS=        $(addprefix $(DPP_CFG_DIR)/, $(DPP_CFG_DEPS))           \
52                 $(addprefix $(VJ_M4_DIR)/, $(VJ_M4_DEPS))
53
54 vpath configure $(srcdir)
55 vpath %.ac $(srcdir)
56 vpath %.in $(srcdir)
57
58 # These are necessary to deal with the last-resort rule at the end of the file.
59 Makefile.pre: ;
60 configure.in: ;
61 Makefile.in: ;
62 $(M4_DEPS): ;
63
64 configure: configure.in $(M4_DEPS)
65         cd $(srcdir) && ./autogen.sh
66
67 config.status: configure ;
68
69 Makefile: configure config.status Makefile.in
70         $(CFG_SHELL) $(srcdir)/configure $(CONFIGURE_ARGS)
71
72 %:: Makefile
73         @$(MAKE) -f Makefile $@
Note: See TracBrowser for help on using the browser.