root/juggler/tags/1.0.5/Input/Makefile.in

Revision 3216, 3.1 kB (checked in by bthomp, 8 years ago)

Added intersense tracker support.

  • 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, 1999, 2000 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 # -----------------------------------------------------------------------------
34 # Makefile.in for juggler/Input.  It requires GNU make.
35 #
36 # Generated for use on @PLATFORM@
37 # -----------------------------------------------------------------------------
38
39 default: all
40
41 # Define ${_LOCAL_CLEAN} and ${_LOCAL_CLEANDEP} to inform the shared 'clean'
42 # target and shared 'cleandepend' target that there are local '_clean' and
43 # '_cleandepend' targets to be run besides the standard targets.
44 _LOCAL_CLEAN    = 1
45 _LOCAL_CLEANDEP = 1
46
47 # Include common definitions.
48 include @topdir@/Makefile.base
49
50 includedir      = @includedir@/Input
51 srcdir          = @srcdir@
52 top_srcdir      = @top_srcdir@
53 VJROOT          = ${top_srcdir}
54 VJ_SRCDIR       = @VJ_SRCDIR@/Input
55 WORKDIR         = ${topdir}/Input
56
57 # Prefix for recursive stuff.
58 DIRPRFX         = Input/
59
60 # Subdirectories to compile.
61 SUBDIRS         = Filter        \
62                   InputManager  \
63                   Multi         \
64                   ibox          \
65                   intersense    \
66                   vjGesture     \
67                   vjGlove       \
68                   vjInput       \
69                   vjKeyboard    \
70                   vjPosition    \
71                   vjSim
72
73 # Include the recursive target code.
74 include ${MKPATH}/vj.rec.mk
75
76 # -----------------------------------------------------------------------------
77 # Library targets.
78 # -----------------------------------------------------------------------------
79 all: dbg opt dso ddso
80
81 dbg opt dso ddso obj install:
82         @${MAKE} RECTARGET="$@" OPTIMIZER="${OPTIMIZER}"                \
83             BASE_OBJDIR="${BASE_OBJDIR}" recursive
84
85 # -----------------------------------------------------------------------------
86 # Clean-up.
87 # -----------------------------------------------------------------------------
88 _clean:
89         @${MAKE} RECTARGET="clean" OPTIMIZER="${OPTIMIZER}"     \
90             DIRPRFX="Input/" OBJDIR="${OBJDIR}" recursive
91
92 _cleandepend:
93         @${MAKE} DO_CLEANDEPEND=1 RECTARGET="cleandepend" recursive
Note: See TracBrowser for help on using the browser.