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

Revision 19729, 4.2 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 # ***************** <VPR heading BEGIN do not edit this line> *****************
2 #
3 # VR Juggler Portable Runtime
4 #
5 # Original Authors:
6 #   Allen Bierbaum, Patrick Hartling, Kevin Meinert, Carolina Cruz-Neira
7 #
8 # ****************** <VPR heading END do not edit this line> ******************
9
10 # ************** <auto-copyright.pl BEGIN do not edit this line> **************
11 #
12 # VR Juggler is (C) Copyright 1998-2007 by Iowa State University
13 #
14 # Original Authors:
15 #   Allen Bierbaum, Christopher Just,
16 #   Patrick Hartling, Kevin Meinert,
17 #   Carolina Cruz-Neira, Albert Baker
18 #
19 # This library is free software; you can redistribute it and/or
20 # modify it under the terms of the GNU Library General Public
21 # License as published by the Free Software Foundation; either
22 # version 2 of the License, or (at your option) any later version.
23 #
24 # This library is distributed in the hope that it will be useful,
25 # but WITHOUT ANY WARRANTY; without even the implied warranty of
26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
27 # Library General Public License for more details.
28 #
29 # You should have received a copy of the GNU Library General Public
30 # License along with this library; if not, write to the
31 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
32 # Boston, MA 02111-1307, USA.
33 #
34 # *************** <auto-copyright.pl END do not edit this line> ***************
35
36 # ------------------------------------------------------------------------------
37 # This file is imported via require by the Perl script
38 # release/scripts/makefiles-gen.pl.  It populates the %VARS hash with
39 # values used in generating Makefiles from Makefile.in templates at
40 # installation time.  Any @...@ symbols in the Makefile.in's found in the
41 # directories samples and test are to be replaced by these values during the
42 # installation process.  All values should be in single quotes to prevent
43 # expansion of possible variable strings by Perl.
44 #
45 # Generated for use on @PLATFORM@
46 # ------------------------------------------------------------------------------
47
48 # Compiler information.
49 $VARS{'topdir'}               = '@topdir@';
50 $VARS{'top_srcdir'}           = '@top_srcdir@';
51 $VARS{'APP_CC'}               = '@APP_CC@';
52 $VARS{'APP_CFLAGS'}           = '@APP_CFLAGS@';
53 $VARS{'APP_CXX'}              = '@APP_CXX@';
54 $VARS{'APP_CXXFLAGS'}         = '@APP_CXXFLAGS@';
55 $VARS{'APP_DEBUG_CFLAGS'}     = '@APP_DEBUG_CFLAGS@';
56 $VARS{'APP_OPTIM_CFLAGS'}     = '@APP_OPTIM_CFLAGS@';
57 $VARS{'APP_EXTRA_CFLAGS'}     = '@APP_EXTRA_CFLAGS@';
58 $VARS{'APP_DEFS'}             = '@APP_DEFS@';
59 $VARS{'APP_INCLUDES'}         = '@APP_INCLUDES@';
60 $VARS{'DEP_GEN_FLAG'}         = '@DEP_GEN_FLAG@';
61
62 # Linker information.
63 $VARS{'APP_LINK'}             = '@APP_LINK@';
64 $VARS{'APP_LINK_FLAGS'}       = '@APP_LINK_FLAGS@';
65 $VARS{'APP_LINKALL_ON'}       = '@APP_LINKALL_ON@';
66 $VARS{'APP_LINKALL_OFF'}      = '@APP_LINKALL_OFF@';
67 $VARS{'APP_DEBUG_LFLAGS'}     = '@APP_DEBUG_LFLAGS@';
68 $VARS{'APP_OPTIM_LFLAGS'}     = '@APP_OPTIM_LFLAGS@';
69 $VARS{'APP_EXTRA_LFLAGS'}     = '@APP_EXTRA_LFLAGS@';
70 $VARS{'APP_BASIC_LIBS_BEGIN'} = '@APP_BASIC_LIBS_BEGIN_INST@';
71 $VARS{'APP_BASIC_LIBS_END'}   = '@APP_BASIC_LIBS_END_INST@';
72 $VARS{'APP_BASIC_LIBS'}       = '@APP_BASIC_LIBS@';
73 $VARS{'APP_BASIC_EXT_LIBS'}   = '@APP_BASIC_EXT_LIBS@';
74 $VARS{'APP_EXTRA_LIBS_BEGIN'} = '@APP_EXTRA_LIBS_BEGIN@';
75 $VARS{'APP_EXTRA_LIBS_END'}   = '@APP_EXTRA_LIBS_END@';
76 $VARS{'APP_EXTRA_LIBS'}       = '@APP_EXTRA_LIBS@';
77
78 # Miscellaneous options.
79 $VARS{'EXEEXT'}          = '@EXEEXT@';
80 $VARS{'OBJEXT'}          = '@OBJEXT@';
81 $VARS{'EXE_NAME_FLAG'}   = '@EXE_NAME_FLAG@';
82 $VARS{'OBJ_BUILD_FLAG'}  = '@OBJ_BUILD_FLAG@';
83 $VARS{'OBJ_NAME_FLAG'}   = '@OBJ_NAME_FLAG@';
84 $VARS{'PLATFORM'}        = '@PLATFORM@';
85 $VARS{'LIBBITSUF'}       = '@LIBBITSUF@';
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 $VARS{'APP_EXTRA_FLAGS'}      = '@APP_EXTRA_FLAGS@';
99
100 1;
Note: See TracBrowser for help on using the browser.