| 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 |
.NOTPARALLEL: Makefile |
|---|
| 28 |
|
|---|
| 29 |
default: debug ; |
|---|
| 30 |
|
|---|
| 31 |
srcdir= @srcdir@ |
|---|
| 32 |
top_srcdir= @top_srcdir@ |
|---|
| 33 |
|
|---|
| 34 |
CONFIGURE_ARGS= @CONFIGURE_ARGS@ |
|---|
| 35 |
CFG_SHELL= @CFG_SHELL@ |
|---|
| 36 |
DEPS= vapor jackal sonix gadgeteer |
|---|
| 37 |
VERSION_FILES= $(foreach dep,$(DEPS),$(srcdir)/../$(dep)/VERSION) |
|---|
| 38 |
|
|---|
| 39 |
DPP_CFG_DIR= $(top_srcdir)/Doozer++/config |
|---|
| 40 |
DPP_PKG_DIR= $(top_srcdir)/Doozer++/config/pkgs |
|---|
| 41 |
VJ_M4_DIR= $(top_srcdir)/macros |
|---|
| 42 |
EXT_M4_DIR= $(top_srcdir)/external/macros |
|---|
| 43 |
|
|---|
| 44 |
DPP_CFG_DEPS= abi.m4 basic_progs.m4 cplusplus.m4 gcc.m4 general.m4 \ |
|---|
| 45 |
install.m4 java.m4 linker.m4 perl.m4 sys.m4 win32.m4 |
|---|
| 46 |
DPP_PKG_DEPS= cppunit.m4 opengl.m4 performer.m4 |
|---|
| 47 |
VJ_M4_DEPS= gadget.m4 jccl.m4 sonix.m4 tweek.m4 vpr.m4 vrj-helpers.m4 |
|---|
| 48 |
EXT_M4_DEPS= gmtl.m4 |
|---|
| 49 |
|
|---|
| 50 |
M4_DEPS= $(addprefix $(DPP_CFG_DIR)/, $(DPP_CFG_DEPS)) \ |
|---|
| 51 |
$(addprefix $(DPP_PKG_DIR)/, $(DPP_PKG_DEPS)) \ |
|---|
| 52 |
$(addprefix $(VJ_M4_DIR)/, $(VJ_M4_DEPS)) \ |
|---|
| 53 |
$(addprefix $(EXT_M4_DIR)/, $(EXT_M4_DEPS)) |
|---|
| 54 |
|
|---|
| 55 |
vpath configure $(srcdir) |
|---|
| 56 |
vpath %.ac $(srcdir) |
|---|
| 57 |
vpath %.in $(srcdir) |
|---|
| 58 |
|
|---|
| 59 |
# These are necessary to deal with the last-resort rule at the end of the file. |
|---|
| 60 |
Makefile.pre: ; |
|---|
| 61 |
configure.ac: ; |
|---|
| 62 |
Makefile.in: ; |
|---|
| 63 |
Makefile.inc.in: ; |
|---|
| 64 |
make.defs.mk.in: ; |
|---|
| 65 |
vrjuggler.fpc.in: ; |
|---|
| 66 |
vrjuggler-opengl.fpc.in: ; |
|---|
| 67 |
vrjuggler-performer.fpc.in: ; |
|---|
| 68 |
$(M4_DEPS): ; |
|---|
| 69 |
$(srcdir)/VERSION: ; |
|---|
| 70 |
$(VERSION_FILES): ; |
|---|
| 71 |
|
|---|
| 72 |
configure: configure.ac $(M4_DEPS) |
|---|
| 73 |
cd $(srcdir) && ./autogen.sh |
|---|
| 74 |
|
|---|
| 75 |
config.status: configure ; |
|---|
| 76 |
|
|---|
| 77 |
Makefile: $(srcdir)/VERSION configure config.status Makefile.in \ |
|---|
| 78 |
Makefile.inc.in make.defs.mk.in vrjuggler.fpc.in \ |
|---|
| 79 |
vrjuggler-opengl.fpc.in vrjuggler-performer.fpc.in $(VERSION_FILES) |
|---|
| 80 |
$(CFG_SHELL) $(srcdir)/configure $(CONFIGURE_ARGS) |
|---|
| 81 |
@$(MAKE) -f Makefile cleandepend |
|---|
| 82 |
|
|---|
| 83 |
%:: Makefile |
|---|
| 84 |
@$(MAKE) -f Makefile $@ |
|---|