root/juggler/branches/2.2/modules/gadgeteer/drivers/VARS.pl.in

Revision 19729, 3.5 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
41 $VARS{'CC'}              = '@CC@';
42 $VARS{'C_DLL'}           = '@C_DLL@';
43 $VARS{'C_PLUGIN'}        = '@C_PLUGIN@';
44 $VARS{'CFLAGS'}          = '@CFLAGS@';
45 $VARS{'CFLAGS_DYNLIB'}   = '@CFLAGS_DYNLIB@';
46 $VARS{'CC_PROF_FLAGS'}   = '@CC_PROF_FLAGS@';
47 $VARS{'CXX'}             = '@CXX@';
48 $VARS{'CXX_DLL'}         = '@CXX_DLL@';
49 $VARS{'CXX_PLUGIN'}      = '@CXX_PLUGIN@';
50 $VARS{'CXXFLAGS'}        = '@CXXFLAGS@';
51 $VARS{'CXXFLAGS_DYNLIB'} = '@CXXFLAGS_DYNLIB@';
52 $VARS{'CXX_PROF_FLAGS'}  = '@CXX_PROF_FLAGS@';
53 $VARS{'DEFS'}            = '@DEFS@';
54 $VARS{'DEP_GEN_FLAG'}    = '@DEP_GEN_FLAG@';
55 $VARS{'DEPEND_EXTRAS'}   = '@DEPEND_EXTRAS@';
56 $VARS{'DEPEND_FLAGS'}    = '@DEPEND_FLAGS@';
57 $VARS{'INCLUDES'}        = '@INCLUDES@';
58 $VARS{'JDK_HOME'}        = '@JDK_HOME@';
59
60 $VARS{'DYLIB_NAME_FLAG'} = '@DYLIB_NAME_FLAG@';
61 $VARS{'DYNAMICLIB_EXT'}  = '@DYNAMICLIB_EXT@';
62 $VARS{'OBJEXT'}          = '@OBJEXT@';
63 $VARS{'OBJ_BUILD_FLAG'}  = '@OBJ_BUILD_FLAG@';
64 $VARS{'OBJ_NAME_FLAG'}   = '@OBJ_NAME_FLAG@';
65 $VARS{'PLATFORM'}        = '@PLATFORM@';
66 $VARS{'LIBBITSUF'}       = '@LIBBITSUF@';
67
68 $VARS{'DSOREGFILE'}      = '@DSOREGFILE@';
69 $VARS{'DSOVERSION'}      = '@DSOVERSION@';
70 $VARS{'DSOVERSIONOPTS'}  = '@DSOVERSIONOPTS@';
71
72 $VARS{'LD'}              = '@LD@';
73 $VARS{'LDFLAGS'}         = '@LDFLAGS@';
74 $VARS{'EXTRA_LDFLAGS'}   = '@EXTRA_LDFLAGS@';
75 $VARS{'LDOPTS'}          = '@LDOPTS@';
76 $VARS{'LDOPTS_DBG'}      = '@LDOPTS_DBG@';
77 $VARS{'LDOPTS_OPT'}      = '@LDOPTS_OPT@';
78 $VARS{'LDOPTS_PROF'}     = '@LDOPTS_PROF@';
79 $VARS{'LIBS'}            = '@LIBS@';
80 $VARS{'OS_TYPE'}         = '@OS_TYPE@';
81
82 $VARS{'LN_S'}            = '@LN_S@';
83 $VARS{'MAKEDEPEND'}      = '@MAKEDEPEND@';
84 $VARS{'PERL'}            = '@PERL@';
85 $VARS{'RANLIB'}          = '@RANLIB@';
86 $VARS{'RM_LN'}           = '@RM_LN@';
87
88 1;
Note: See TracBrowser for help on using the browser.