root/juggler/branches/2.2/modules/vrjuggler/VARS.pl.in

Revision 19729, 4.1 kB (checked in by patrick, 2 years ago)

Copyright update.

  • 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 # ------------------------------------------------------------------------------
28 # This file is imported via require by the Perl script
29 # release/scripts/makefiles-gen.pl.  It populates the %VARS hash with
30 # values used in generating Makefiles from Makefile.in templates at
31 # installation time.  Any @...@ symbols in the Makefile.in's found in the
32 # directories samples and test are to be replaced by these values during the
33 # installation process.  All values should be in single quotes to prevent
34 # expansion of possible variable strings by Perl.
35 #
36 # Generated for use on @PLATFORM@
37 # ------------------------------------------------------------------------------
38
39 $VARS{'prefix'}           = '@prefix@';
40 $VARS{'ABI'}              = '@ABI@';
41 $VARS{'ISA'}              = '@ISA@';
42
43 # Compiler information.
44 $VARS{'APP_CC'}           = '@APP_CC@';
45 $VARS{'APP_CXX'}          = '@APP_CXX@';
46 $VARS{'APP_CXX_PLUGIN'}   = '@APP_CXX_PLUGIN@';
47 $VARS{'APP_CFLAGS'}       = '@APP_CFLAGS@';
48 $VARS{'APP_CXXFLAGS'}     = '@APP_CXXFLAGS@';
49 $VARS{'APP_DEBUG_CFLAGS'} = '@APP_DEBUG_CFLAGS@';
50 $VARS{'APP_OPTIM_CFLAGS'} = '@APP_OPTIM_CFLAGS@';
51 $VARS{'APP_EXTRA_CFLAGS'} = '@APP_EXTRA_CFLAGS@';
52 $VARS{'APP_DEFS'}         = '@DEFS@';
53 $VARS{'APP_INCLUDES'}     = '@APP_INCLUDES@';
54 $VARS{'DEP_GEN_FLAG'}     = '@DEP_GEN_FLAG@';
55
56 # Linker information.
57 $VARS{'APP_LINK'}             = '@APP_LINK@';
58 $VARS{'APP_LINKALL_ON'}       = '@APP_LINKALL_ON@';
59 $VARS{'APP_LINKALL_OFF'}      = '@APP_LINKALL_OFF@';
60 $VARS{'APP_LINK_STATIC_ON'}   = '@APP_LINK_STATIC_ON@';
61 $VARS{'APP_LINK_STATIC_OFF'}  = '@APP_LINK_STATIC_OFF@';
62 $VARS{'APP_LINK_FLAGS'}       = '@APP_LINK_FLAGS@';
63 $VARS{'APP_DEBUG_LFLAGS'}     = '@APP_DEBUG_LFLAGS@';
64 $VARS{'APP_OPTIM_LFLAGS'}     = '@APP_OPTIM_LFLAGS@';
65 $VARS{'APP_EXTRA_LFLAGS'}     = '@APP_EXTRA_LFLAGS@';
66 $VARS{'APP_BASIC_LIBS_BEGIN'} = '@APP_BASIC_LIBS_BEGIN_INST@';
67 $VARS{'APP_BASIC_LIBS_END'}   = '@APP_BASIC_LIBS_END_INST@';
68 $VARS{'APP_BASIC_LIBS'}       = '@APP_BASIC_LIBS@';
69 $VARS{'APP_BASIC_EXT_LIBS'}   = '@APP_BASIC_EXT_LIBS@';
70 $VARS{'APP_EXTRA_LIBS_BEGIN'} = '@APP_EXTRA_LIBS_BEGIN@';
71 $VARS{'APP_EXTRA_LIBS_END'}   = '@APP_EXTRA_LIBS_END@';
72 $VARS{'APP_EXTRA_LIBS'}       = '@VJ_APP_EXTRA_LIBS_INST@';
73
74 # Miscellaneous options.
75 $VARS{'EXEEXT'}          = '@EXEEXT@';
76 $VARS{'OBJEXT'}          = '@OBJEXT@';
77 $VARS{'EXE_NAME_FLAG'}   = '@EXE_NAME_FLAG@';
78 $VARS{'OBJ_BUILD_FLAG'}  = '@OBJ_BUILD_FLAG@';
79 $VARS{'OBJ_NAME_FLAG'}   = '@OBJ_NAME_FLAG@';
80 $VARS{'PLATFORM'}        = '@PLATFORM@';
81 $VARS{'LIBBITSUF'}       = '@LIBBITSUF@';
82
83 # VR Juggler stuff.
84 $VARS{'VJ_SHARE_DIR'}       = '@VJ_SHARE_DIR@';
85 $VARS{'APP_EXTRA_LIBS_OSG'} = '@APP_EXTRA_LIBS_OSG@';
86
87 $VARS{'DEPEND_EXTRAS'}        = '@DEPEND_EXTRAS@';
88 $VARS{'DEPEND_FLAGS'}         = '@DEPEND_FLAGS@';
89
90 $VARS{'LD'}                   = '@LD@';
91 $VARS{'LDFLAGS'}              = '@LDFLAGS@';
92 $VARS{'LIBS'}                 = '@LIBS@';
93 $VARS{'OS_TYPE'}              = '@OS_TYPE@';
94 $VARS{'MAKEDEPEND'}           = '@MAKEDEPEND@';
95 $VARS{'USE_MAKEDEPEND'}       = '@USE_MAKEDEPEND@';
96
97 $VARS{'APP_BASE_DIR'}         = '@APP_BASE_DIR_INST@';
98
99 1;
Note: See TracBrowser for help on using the browser.