| 1 |
# ************** <auto-copyright.pl BEGIN do not edit this line> ************** |
|---|
| 2 |
# |
|---|
| 3 |
# VR Juggler is (C) Copyright 1998, 1999, 2000, 2001, 2002 |
|---|
| 4 |
# by Iowa State University |
|---|
| 5 |
# |
|---|
| 6 |
# Original Authors: |
|---|
| 7 |
# Allen Bierbaum, Christopher Just, |
|---|
| 8 |
# Patrick Hartling, Kevin Meinert, |
|---|
| 9 |
# Carolina Cruz-Neira, Albert Baker |
|---|
| 10 |
# |
|---|
| 11 |
# This library is free software; you can redistribute it and/or |
|---|
| 12 |
# modify it under the terms of the GNU Library General Public |
|---|
| 13 |
# License as published by the Free Software Foundation; either |
|---|
| 14 |
# version 2 of the License, or (at your option) any later version. |
|---|
| 15 |
# |
|---|
| 16 |
# This library is distributed in the hope that it will be useful, |
|---|
| 17 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 18 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 19 |
# Library General Public License for more details. |
|---|
| 20 |
# |
|---|
| 21 |
# You should have received a copy of the GNU Library General Public |
|---|
| 22 |
# License along with this library; if not, write to the |
|---|
| 23 |
# Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|---|
| 24 |
# Boston, MA 02111-1307, USA. |
|---|
| 25 |
# |
|---|
| 26 |
# ----------------------------------------------------------------- |
|---|
| 27 |
# File: $RCSfile$ |
|---|
| 28 |
# Date modified: $Date$ |
|---|
| 29 |
# Version: $Revision$ |
|---|
| 30 |
# ----------------------------------------------------------------- |
|---|
| 31 |
# |
|---|
| 32 |
# *************** <auto-copyright.pl END do not edit this line> *************** |
|---|
| 33 |
|
|---|
| 34 |
# ----------------------------------------------------------------------------- |
|---|
| 35 |
# Makefile.in for juggler/test/Sync |
|---|
| 36 |
# |
|---|
| 37 |
# Generated for use on @PLATFORM@ |
|---|
| 38 |
# ----------------------------------------------------------------------------- |
|---|
| 39 |
|
|---|
| 40 |
.SUFFIXES: .cpp .@OBJ_FILE_SUFFIX@ |
|---|
| 41 |
|
|---|
| 42 |
srcdir = @srcdir@ |
|---|
| 43 |
|
|---|
| 44 |
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= |
|---|
| 45 |
# NOTE: When compiling against the debugging version of VR Juggler, you |
|---|
| 46 |
# *MUST* add -D_DEBUG to $(COMPILE) for these test programs to work properly. |
|---|
| 47 |
# If compiling against the optimized version, you must add -D_OPT instead. |
|---|
| 48 |
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= |
|---|
| 49 |
EXTRA_FLAGS = @APP_EXTRA_FLAGS@ |
|---|
| 50 |
COMPILE = @CXX@ @DEFS@ $(VJ_INCLUDES) @CPPFLAGS@ @CXXFLAGS@ @DBG_FLAGS@ $(EXTRA_FLAGS) |
|---|
| 51 |
LINK = @CXX@ @CPPFLAGS@ @CXXFLAGS@ @EXTRA_LINK_FLAGS@ $(EXTRA_FLAGS) |
|---|
| 52 |
VJ_INCLUDES = @INCLUDES@ -I$(VJ_BASE_DIR)/include -I$(srcdir) |
|---|
| 53 |
VJ_LIBS = @APP_VJ_LIBS_BEGIN@ @APP_VJ_LIBS_BASIC@ @APP_VJ_LIBS_GL@ @APP_VJ_LIBS_END@ @APP_LIBS_BASIC@ |
|---|
| 54 |
VPATH = @srcdir@ |
|---|
| 55 |
|
|---|
| 56 |
# If the library uses POSIX threads, the appropriate pthread enabling option |
|---|
| 57 |
# must also be added to the list of libraries. In most cases, this will be |
|---|
| 58 |
# "-lpthread". |
|---|
| 59 |
# |
|---|
| 60 |
# The proper library path must be specified depending on the Application |
|---|
| 61 |
# Binary Interface (ABI) used. For n32 binaries, use -L/usr/lib32. For |
|---|
| 62 |
# 64-bit binaries, use -L/usr/lib64. |
|---|
| 63 |
EXTRA_LIBS = @APP_EXTRA_LIBS_BEGIN@ @APP_EXTRA_LIBS_BASIC@ @APP_EXTRA_LIBS_GL@ @APP_EXTRA_LIBS_END@ |
|---|
| 64 |
|
|---|
| 65 |
SYNC_PROGS = testCond |
|---|
| 66 |
|
|---|
| 67 |
# ----------------------------------------------------------------------------- |
|---|
| 68 |
# Targets. |
|---|
| 69 |
# ----------------------------------------------------------------------------- |
|---|
| 70 |
default: all |
|---|
| 71 |
|
|---|
| 72 |
all: $(SYNC_PROGS) |
|---|
| 73 |
|
|---|
| 74 |
testCond: testCond.@OBJ_FILE_SUFFIX@ |
|---|
| 75 |
$(LINK) -o $@ testCond.@OBJ_FILE_SUFFIX@ $(VJ_LIBS) $(EXTRA_LIBS) |
|---|
| 76 |
|
|---|
| 77 |
.cpp.@OBJ_FILE_SUFFIX@: |
|---|
| 78 |
$(COMPILE) @OBJ_NAME_FLAG@ -c $< |
|---|
| 79 |
|
|---|
| 80 |
# ----------------------------------------------------------------------------- |
|---|
| 81 |
# Clean-up. |
|---|
| 82 |
# ----------------------------------------------------------------------------- |
|---|
| 83 |
clean: |
|---|
| 84 |
rm -f Makedepend $(SYNC_PROGS) *.exe *.ilk *.@OBJ_FILE_SUFFIX@ \ |
|---|
| 85 |
*core *.?db so_locations |
|---|
| 86 |
rm -rf ./ii_files |
|---|