root/juggler/tags/2.0_beta_3/Makefile.in

Revision 16659, 2.6 kB (checked in by patrickh, 4 years ago)

Fixed the 'release' target when a build directory is not used.

  • 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-2005 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 .PHONY: release
34
35 default: debug
36
37 bindir=         @bindir@
38 datadir=        @datadir@
39 exec_prefix=    @exec_prefix@
40 libdir=         @libdir@
41 libexecdir=     @libexecdir@
42 prefix=         @prefix@
43 releasedir=     $(JUGGLERROOT_ABS)/release
44 sbindir=        @sbindir@
45 scriptdir=      $(releasedir)/scripts
46 srcdir=         @srcdir@
47 sysconfdir=     @sysconfdir@
48 topdir=         @topdir@
49
50 MAKEFLAGS+=     --no-print-directory
51 JUGGLERROOT_ABS=@JUGGLERROOT_ABS@
52
53 #@SET_MAKE@
54
55 DIRS=           @JUGGLER_PROJECTS@
56
57 debug dbg dbg-dso optim opt opt-dso profiled prof prof-dso release      \
58 world install-debug install-optim install-profiled links clean-links:
59         $(MAKE) GLOBAL_BUILD=1 RECTARGET="$@"                           \
60           instlinks="$(topdir)/instlinks" recursive
61
62 build buildworld:
63         $(MAKE) GLOBAL_BUILD=1 RECTARGET="buildworld"                   \
64           instlinks="$(topdir)/instlinks" recursive
65
66 install installworld:
67         $(MAKE) GLOBAL_BUILD=1 RECTARGET="installworld" recursive
68
69 install-deps:
70         $(MAKE) -C external $@
71
72 regen:
73         @for dir in $(DIRS) ; do                \
74             (cd $$dir && ./config.status) ;     \
75           done
76
77 clobber:
78         $(MAKE) GLOBAL_BUILD=1 RECTARGET="$@" recursive
79         rm -rf instlinks
80
81 clean cleandepend:
82         $(MAKE) GLOBAL_BUILD=1 RECTARGET="$@" recursive
83
84 recursive:
85         @for dir in $(DIRS) ; do \
86             echo "=====> $$dir" ; \
87             PATH="$(topdir)/instlinks/bin":$$PATH $(MAKE) -C $$dir -f Makefile.pre $(RECTARGET) || exit 1; \
88             echo "<===== $$dir" ; \
89           done
Note: See TracBrowser for help on using the browser.