Changeset 16694
- Timestamp:
- 01/31/05 16:22:13 (4 years ago)
- Files:
-
- trunk/juggler/Makefile.docs (modified) (1 diff)
- trunk/juggler/juggler.cfg (modified) (1 diff)
- trunk/juggler/modules/vrjuggler/ChangeLog (modified) (1 diff)
- trunk/juggler/modules/vrjuggler/Makefile.docs (deleted)
- trunk/juggler/modules/vrjuggler/Makefile.in (modified) (2 diffs)
- trunk/juggler/modules/vrjuggler/Makefile.inc.in (modified) (7 diffs)
- trunk/juggler/modules/vrjuggler/configure.in (modified) (10 diffs)
- trunk/juggler/modules/vrjuggler/java.defs.mk.in (deleted)
- trunk/juggler/modules/vrjuggler/make.defs.mk.in (modified) (2 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/Makefile.docs (added)
- trunk/juggler/modules/vrjuggler/vrjconfig/Makefile.in (modified) (8 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/Makefile.inc.in (deleted)
- trunk/juggler/modules/vrjuggler/vrjconfig/Makefile.pre.in (added)
- trunk/juggler/modules/vrjuggler/vrjconfig/autogen.sh (added)
- trunk/juggler/modules/vrjuggler/vrjconfig/common.defs.mk.in (added)
- trunk/juggler/modules/vrjuggler/vrjconfig/commoneditors/Makefile.in (modified) (2 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/configure.in (added)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/display_window/Makefile.in (modified) (6 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/display_window/build.xml.in (modified) (1 diff)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/flock/Makefile.in (modified) (7 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/flock/build.xml.in (modified) (1 diff)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/intersense/Makefile.in (modified) (6 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/intersense/build.xml.in (modified) (1 diff)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/motionstar/Makefile.in (modified) (7 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/motionstar/build.xml.in (modified) (1 diff)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/pinchglove/Makefile.in (modified) (6 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/proxyeditor/Makefile.in (modified) (7 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/surfacedisplayeditor/Makefile.in (modified) (6 diffs)
- trunk/juggler/modules/vrjuggler/vrjconfig/java.defs.mk.in (added)
- trunk/juggler/modules/vrjuggler/vrjconfig/make.defs.mk.in (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/juggler/Makefile.docs
r16658 r16694 57 57 modules/vrjuggler/doc/programmer.guide 58 58 59 JAVADOC_SUBDIR= modules/tweek/java \60 modules/jackal \61 modules/vrjuggler 59 JAVADOC_SUBDIR= modules/tweek/java \ 60 modules/jackal \ 61 modules/vrjuggler/vrjconfig 62 62 63 63 all: trunk/juggler/juggler.cfg
r16372 r16694 72 72 } 73 73 74 VRJConfig 75 { 76 depend Tweek; 77 depend JCCL; 78 modules/vrjuggler/vrjconfig; 79 } 80 81 // This depends on VRJConfig because it needs to have the installed VRJConfig 82 // directory hierarchy in place to insert its JavaBean. 74 83 VRJPlugins 75 84 { 76 85 depend VRJuggler; 86 depend VRJConfig; 77 87 modules/vrjuggler/plugins; 78 88 } trunk/juggler/modules/vrjuggler/ChangeLog
r16643 r16694 1 1 DATE AUTHOR CHANGE 2 2 ----------- ----------- ------------------------------------------------------- 3 Jan-31-2005 patrickh Separated the builds for VR Juggler and VRJConfig. 4 3 5 [2.0 Beta 2 released - 1.18.2005]============================================== 4 6 Jan-18-2005 patrickh NEW VERSION: 1.1.167 trunk/juggler/modules/vrjuggler/Makefile.in
r16693 r16694 145 145 SUBDIR= vrj 146 146 147 ifeq (@BUILD_JAVA@, Y)148 SUBDIR+= vrjconfig149 endif150 151 147 # ============================================================================= 152 148 # Library targets. The default is 'debug' as defined above. The steps for … … 156 152 # 2) Compile all object files that are out of date. 157 153 # 3) Compile the actual libraries from the object files. 158 # 4) Build the Java-based config editor (if necessary). 159 # 5) Set up the developer installation links. 154 # 4) Set up the developer installation links. 160 155 # ============================================================================= 161 156 trunk/juggler/modules/vrjuggler/Makefile.inc.in
r16692 r16694 46 46 srcdir= @srcdir@ 47 47 top_srcdir= @top_srcdir@ 48 49 ifndef NO_JAVA50 BUILD_JAVA= @BUILD_JAVA@51 else52 BUILD_JAVA= N53 endif54 48 55 49 # Extra compiler and linker options needed only by this file. … … 154 148 @$(MAKE) $(PARAM_HEADER) 155 149 @$(MAKE) $(PARAM_SOURCE) 156 @$(MAKE) vrjconfig-java157 150 158 151 $(PARAM_HEADER): $(VJROOT_ABS)/$(PARAM_HEADER).in $(VJROOT_ABS)/VERSION … … 319 312 320 313 # ============================================================================= 321 # VRJConfig targets322 # =============================================================================323 # Build the VRJConfig code base and the JAR files324 vrjconfig-gui:325 @$(MAKE) vrjconfig-java326 327 # Build the java code and the JAR files328 vrjconfig-java:329 ifeq ($(BUILD_JAVA), Y)330 @echo "===> vrjconfig"331 $(MAKE) -C vrjconfig $@332 @echo "<=== vrjconfig"333 else334 @echo "------------------------------------------------"335 @echo "VRJConfig build skipped"336 @echo "------------------------------------------------"337 endif338 339 # =============================================================================340 314 # Make links for developer use that provide the needed functionality for 341 315 # the $VJ_BASE_DIR environment variable to be used when needed. $VJ_BASE_DIR … … 390 364 # 4) Install the test programs. 391 365 # 5) Install the contents of the data directory. 392 # 6) Install the Java-based config editor (if possible).393 366 # ============================================================================= 394 367 … … 412 385 $(MTREE_CMD) -Ude -f $(mtreedir)/VJ.include.dist -p $(prefix) 413 386 $(MTREE_CMD) -Ude -f $(mtreedir)/VJ.lib.dist -p $(prefix) 387 $(MTREE_CMD) -Ude -f $(mtreedir)/VJ.java.dist -p $(projdatadir) 414 388 $(MTREE_CMD) -Ude -f $(mtreedir)/VJ.samples.dist -p $(projdatadir) 415 389 $(MTREE_CMD) -Ude -f $(mtreedir)/VJ.test.dist -p $(projdatadir) … … 431 405 # Do everything needed after installing the library binaries. 432 406 post-install: 433 @$(MAKE) install-java434 407 @$(MAKE) install-samples 435 408 @$(MAKE) install-test … … 453 426 $(GROUP_OPT_UNIX) -e .h -o $(includedir)/deprecated \ 454 427 -i $(VJROOT_ABS)/deprecated $(EXTRA_INSTALL_ARGS) 455 456 install-java:457 ifeq ($(BUILD_JAVA), Y)458 @$(MAKE) -C vrjconfig vrjconfig-install459 endif460 428 461 429 # Install the sample applications. trunk/juggler/modules/vrjuggler/configure.in
r16684 r16694 76 76 _enable_pf_api="$enableval", _enable_pf_api='yes') 77 77 78 # Specify where Java3D is located79 AC_ARG_WITH(java3d,80 [ --with-java3d=<PATH> Path to Java3D JAR file(s) ],81 JAVA3D_JAR="$withval", JAVA3D_JAR='none')82 83 # Specify where JOGL is located84 AC_ARG_WITH(jogl,85 [ --with-jogl=<PATH> Path to JOGL JAR file(s) ],86 JOGL_JARS="$withval", JOGL_JARS='')87 88 78 # -------------------------------------------- # 89 79 # --with-pkg[=arg] and --without-pkg arguments # … … 150 140 DPP_CXX_DYNAMIC_CAST(AC_MSG_ERROR(*** The library requires C++ dynamic_cast<> ***)) 151 141 152 # Check for the JDK.153 DPP_PATH_JAVA( , [BUILD_JAVA='Y'], [BUILD_JAVA='N'])154 155 # If there is still no value in $JAVAC, then warn that VRJConfig will not be156 # built157 if test "x$BUILD_JAVA" = "xN" ; then158 AC_MSG_WARN([*** VRJConfig requires the JDK -- it will not be built ***])159 fi160 161 ANT="JAVA_HOME=\"$JDK_HOME\" \"$UNIX_JUGGLERROOT_ABS/external/ant/bin/ant\" --noconfig"162 163 142 # Ensure that a version of Perl greater than or equal to 5.004 is available. 164 143 DPP_PERL_VER(5.004, , , [AC_MSG_ERROR([*** Perl is required ***])]) … … 175 154 VPR_PATH([0.41.0], , [AC_MSG_ERROR(*** VPR required for VR Juggler ***)]) 176 155 VPR_SUBSYSTEM=`$VPR_CONFIG --subsystem` 177 vrj_min_jccl_ver='0.91.1' 178 JCCL_PATH_CXX([$vrj_min_jccl_ver], , 156 JCCL_PATH_CXX([0.91.1], , 179 157 [AC_MSG_ERROR(*** JCCL C++ API required for VR Juggler ***)]) 180 158 GADGETEER_PATH([0.22.0], , … … 185 163 if test "x$VRJ_USE_X11" = "xyes" ; then 186 164 AC_DEFINE([VRJ_USE_X11], , [Define if the X Window System will be used.]) 187 fi188 189 if test "x$BUILD_JAVA" = "xY" ; then190 TWEEK_PATH_JAVA([0.92.1],191 [JCCL_PATH_JAVA([$vrj_min_jccl_ver], ,192 [AC_MSG_WARN([*** JCCL Java API required for VRJConfig ***])193 BUILD_JAVA='N'])],194 [AC_MSG_WARN(*** Tweek Java API required for VRJConfig ***)195 BUILD_JAVA='N'])196 165 fi 197 166 … … 276 245 277 246 DPP_HAVE_CPPUNIT([1.9.10]) 278 279 # ----------------------280 # JDK 1.4 for VRJConfig.281 # ----------------------282 if test "x$BUILD_JAVA" = "xY" ; then283 DPP_JDK_VERSION([$JDK_HOME], [1.4],284 [AC_MSG_WARN([*** JDK 1.4 or newer required for the VRJConfig Proxy Editor ***])])285 fi286 287 # --------288 # Java3D.289 # --------290 BUILD_JAVA_3D_EDITOR='N'291 if test "x$BUILD_JAVA" = "xY" ; then292 # If we are building VRJConfig, we can try to enable building the293 # Java3D-based editor(s).294 if test "x$BUILD_JAVA" = "xY" ; then295 DPP_CHECK_JAVA_STATIC_METHOD(javax.media.j3d.VirtualUniverse, getJ3DThreadPriority() , ,296 BUILD_JAVA_3D_EDITOR='Y',297 [ AC_MSG_WARN([*** Java3D required for Java3D custom editor ***])298 BUILD_JAVA_3D_EDITOR='N' ],299 $JAVA3D_JAR)300 fi301 fi302 303 # --------304 # JOGL.305 # --------306 BUILD_JOGL_EDITOR='N'307 if test "x$BUILD_JAVA" = "xY" ; then308 # If we are building VRJConfig, we can try to enable building the309 # JOGL-based editor(s).310 if test "x$BUILD_JAVA" = "xY" ; then311 DPP_CHECK_JAVA_STATIC_METHOD(net.java.games.jogl.Version, getVersion() , ,312 BUILD_JOGL_EDITOR='Y',313 [ AC_MSG_WARN([*** JOGL required for JOGL custom editor ***])314 BUILD_JOGL_EDITOR='N' ],315 $JOGL_JARS)316 if test "x$BUILD_JOGL_EDITOR" = "xY" ; then317 DPP_CHECK_JAVA_STATIC_METHOD(gleem.ManipManager, getManipManager() , ,318 BUILD_JOGL_EDITOR='Y',319 [ AC_MSG_WARN([*** Gleem required for JOGL custom editor ***])320 BUILD_JOGL_EDITOR='N' ],321 $JOGL_JARS)322 fi323 fi324 fi325 247 326 248 # ----------------------------------------------------------------------------- … … 625 547 vrj_extra_ldflags_linker="$vrj_extra_ldflags_compiler" 626 548 627 if test "x$PLATFORM" = "xDarwin" ; then628 changequote(<<, >>)629 vrjconfig_bundle_tweek_jardir=`echo $TWEEK_JARS | awk -F: '{ print $1 }' | sed -e 's/^\(.*\)\/[^/]*\.jar$/\1/'`630 vrjconfig_bundle_jccl_jardir=`echo $JCCL_JARS | awk -F: '{ print $1 }' | sed -e 's/^\(.*\)\/[^/]*\.jar$/\1/'`631 632 tweek_java_api_jars_bundle=`echo $TWEEK_JARS | sed -e "s|$vrjconfig_bundle_tweek_jardir/\([^/]*.jar\)|"'$JAVAROOT/\1|g'`633 tweek_ext_java_api_jars_bundle=`echo $TWEEK_EXT_JARS | sed -e 's/:/ /g' -e "s|$vrjconfig_bundle_tweek_jardir/\([^/].jar\)|\1|g"`634 changequote([, ])635 636 tweek_datadir=`echo $vrjconfig_bundle_tweek_jardir | sed -e 's/\(.*\)java$/\1/'`637 vrjconfig_bundle_tweek_beandir="${tweek_datadir}beans"638 639 jccl_datadir=`echo $vrjconfig_bundle_jccl_jardir | sed -e 's/\(.*\)java$/\1/'`640 vrjconfig_bundle_jccl_beandir="${jccl_datadir}beans"641 vrjconfig_bundle_jccl_datadir="${jccl_datadir}data"642 fi643 644 549 # ----------------------------------------------------------------------------- 645 550 # Do Makefile substitutions. … … 661 566 AC_SUBST(RM_LN) 662 567 AC_SUBST(VPR_SUBSYSTEM) 663 664 AC_SUBST(BUILD_JAVA)665 AC_SUBST(BUILD_JAVA_3D_EDITOR)666 AC_SUBST(JAVA3D_JAR)667 AC_SUBST(JOGL_JARS)668 568 669 569 AC_SUBST(OPENGL_API) … … 707 607 AC_SUBST(tweek_java_api_jars_bundle) 708 608 AC_SUBST(tweek_ext_java_api_jars_bundle) 709 AC_SUBST(vrjconfig_bundle_tweek_beandir)710 AC_SUBST(vrjconfig_bundle_tweek_jardir)711 AC_SUBST(vrjconfig_bundle_jccl_beandir)712 AC_SUBST(vrjconfig_bundle_jccl_datadir)713 AC_SUBST(vrjconfig_bundle_jccl_jardir)714 609 715 610 # ----------------------------------------------------------------------------- … … 724 619 Makefile.inc 725 620 common.defs.mk 726 java.defs.mk727 621 make.defs.mk 728 622 vrj/Makefile … … 739 633 vrj/Util/Makefile 740 634 vrj.appdefs.mk 741 vrjconfig/build.xml742 vrjconfig/Info.plist743 vrjconfig/Makefile744 vrjconfig/Makefile.inc745 vrjconfig/commoneditors/build.xml746 vrjconfig/commoneditors/Makefile747 vrjconfig/customeditors/Makefile748 vrjconfig/customeditors/display_window/build.xml749 vrjconfig/customeditors/display_window/Makefile750 vrjconfig/customeditors/flock/build.xml751 vrjconfig/customeditors/flock/Makefile752 vrjconfig/customeditors/intersense/build.xml753 vrjconfig/customeditors/intersense/Makefile754 vrjconfig/customeditors/motionstar/build.xml755 vrjconfig/customeditors/motionstar/Makefile756 vrjconfig/customeditors/pinchglove/build.xml757 vrjconfig/customeditors/pinchglove/Makefile758 vrjconfig/customeditors/proxyeditor/build.xml759 vrjconfig/customeditors/proxyeditor/Makefile760 vrjconfig/customeditors/surfacedisplayeditor/build.xml761 vrjconfig/customeditors/surfacedisplayeditor/Makefile762 635 samples/Makefile 763 636 samples/OGL/Makefile trunk/juggler/modules/vrjuggler/make.defs.mk.in
r16525 r16694 55 55 # only the name of the directory, not the full path to it. 56 56 # 57 # ANT - Path to ant58 57 # DPP_SCRIPTDIR - The directory containing Doozer++ helper scripts. 59 58 # MKDEPS_CC - Compiler for C dependencies. … … 91 90 top_srcdir= @top_srcdir@ 92 91 93 ANT= @ANT@94 92 DPP_SCRIPTDIR= $(JUGGLERROOT_ABS)/Doozer++/scripts 95 93 MAKEFLAGS+= --no-print-directory trunk/juggler/modules/vrjuggler/vrjconfig/Makefile.in
r16525 r16694 39 39 default: all 40 40 41 ifndef NO_JAVA 42 BUILD_JAVA= @BUILD_JAVA@ 43 else 44 BUILD_JAVA= N 45 endif 46 41 47 # Include common definitions. 42 48 include @topdir@/make.defs.mk 43 49 include @topdir@/java.defs.mk 44 50 51 instlinks= $(topdir)/instlinks 45 52 srcdir= @srcdir@ 46 53 top_srcdir= @top_srcdir@ … … 63 70 JCCL_BEAN_DIR= @vrjconfig_bundle_jccl_beandir@ 64 71 65 EXTRA_SRCS_PATH= $(srcdir)/../tweek/idl66 72 INSTALL= @INSTALL@ 67 INSTALL_FILES=68 JAVA_IDL_OPTS= @JAVA_IDL_OPTS@ @JAVA_IDL_GENDIR_OPT@$(srcdir)69 JAVA_IDL_INCLUDES= @JAVA_IDL_INCFLAG@$(top_srcdir)70 73 71 74 JARS= ClusterWizard.jar Devices.jar Simulator.jar NewDevice.jar 72 75 BEANS= VRJConfig 73 76 74 _LOCAL_CLEAN= 1 75 JAVA_AFTERBUILD=java_afterbuild 76 77 include $(MKPATH)/dpp.obj-subdir.mk 78 79 # Prefix for recursive stuff. 80 DIRPRFX= vrjconfig/ 81 82 # Subdirectories used for recursion through the source tree. 83 SUBDIR= commoneditors \ 84 customeditors 85 86 $(RECTARGET): recursive 77 @SET_MAKE@ 78 79 all world release: 80 @$(MAKE) build 81 @$(MAKE) install 87 82 88 83 # ----------------------------------------------------------------------------- 89 84 # Uses ant to build the java classes and JARs 90 85 # ----------------------------------------------------------------------------- 91 java_afterbuild: 92 @echo "------------------------------------------------" 93 @echo "Building java sources" 86 debug dbg dbg-dso optim opt opt-dso profiled prof prof-dso buildworld: 87 ifeq ($(BUILD_JAVA), Y) 88 @echo "------------------------------------------------" 89 @echo "Building VRJConfig foundational code" 94 90 @echo "------------------------------------------------" 95 91 $(ANT) 96 @echo "------------------------------------------------"97 @echo "Building Common Editors"98 @echo "------------------------------------------------"99 92 @$(MAKE) -C commoneditors commoneditors 100 @echo "------------------------------------------------"101 @echo "Building Custom Editors"102 @echo "------------------------------------------------"103 93 @$(MAKE) -C customeditors customeditors 104 105 _clean: 106 $(ANT) clean 107 $(MAKE) -C commoneditors clean 108 $(MAKE) -C customeditors clean 109 110 # ----------------------------------------------------------------------------- 111 # Extra targets. 112 # ----------------------------------------------------------------------------- 113 114 # This cannot be named 'install' because Doozer++ already defines that. 115 vrjconfig-install: 94 @$(MAKE) links 95 else 96 @echo "------------------------------------------------" 97 @echo "VRJConfig build skipped" 98 @echo "------------------------------------------------" 99 endif 100 101 links: 102 @$(MAKE) EXTRA_INSTALL_ARGS=-l prefix="$(instlinks)" installworld 103 104 # ----------------------------------------------------------------------------- 105 # Installation targets. 106 # ----------------------------------------------------------------------------- 107 108 install-debug install-optim install-profiled installworld: 109 ifeq ($(BUILD_JAVA), Y) 110 @$(MAKE) do-install 111 else 112 @echo "------------------------------------------------" 113 @echo "VRJConfig install skipped" 114 @echo "------------------------------------------------" 115 endif 116 117 do-install: 116 118 @echo "------------------------------------------------" 117 119 @echo "Installing the VRJConfig code base" … … 119 121 ifeq (@OS_TYPE@, UNIX) 120 122 $(INSTALL) -m $(EXEC_PERMS) $(GROUP_OPT_UNIX) \ 121 $(EXTRA_INSTALL_ARGS) $(VJROOT_ABS)/vrjconfig/vrjconfig.sh \ 122 $(bindir)/vrjconfig 123 $(EXTRA_INSTALL_ARGS) $(VJROOT_ABS)/vrjconfig.sh $(bindir)/vrjconfig 123 124 else 124 125 $(INSTALL) -m $(EXEC_PERMS) $(GROUP_OPT_UNIX) \ 125 $(VJROOT_ABS)/vrjconfig /vrjconfig.bat $(bindir)/vrjconfig.bat126 $(VJROOT_ABS)/vrjconfig.bat $(bindir)/vrjconfig.bat 126 127 endif # if OS_TYPE == UNIX 127 128 $(SHELL) $(MKINSTALLDIRS) $(projdatadir) 128 $(MTREE_CMD) -Ude -f $(mtreedir)/VJ.java.dist -p $(projdatadir)129 129 ifneq ($(JARS), ) 130 130 for jar in $(JARS) ; \ 131 131 do \ 132 132 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 133 $(EXTRA_INSTALL_ARGS) $(topdir)/ vrjconfig/$$jar\134 $(javadir) || exit 1;\133 $(EXTRA_INSTALL_ARGS) $(topdir)/$$jar $(javadir) || \ 134 exit 1; \ 135 135 done 136 136 endif … … 139 139 do \ 140 140 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 141 $(EXTRA_INSTALL_ARGS) $(topdir)/ vrjconfig/$$bean.jar\141 $(EXTRA_INSTALL_ARGS) $(topdir)/$$bean.jar \ 142 142 $(beandir) || exit 1 ; \ 143 143 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 144 144 $(EXTRA_INSTALL_ARGS) \ 145 $(top_srcdir)/ vrjconfig/$$bean.xml $(beandir) || exit 1;\145 $(top_srcdir)/$$bean.xml $(beandir) || exit 1; \ 146 146 done 147 147 endif … … 165 165 $(releasedir)/mac/JavaApplicationStub $(bundle_bindir) 166 166 $(INSTALL) $(EXTRA_INSTALL_ARGS) -m $(FILE_PERMS) \ 167 $(topdir)/vrjconfig/Info.plist $(bundleroot)/Contents 168 $(INSTALL) $(EXTRA_INSTALL_ARGS) -m $(FILE_PERMS) \ 169 $(top_srcdir)/vrjconfig/vrjconfig.icns \ 170 $(bundleroot)/Contents/Resources 171 $(INSTALL) $(EXTRA_INSTALL_ARGS) -m $(FILE_PERMS) \ 172 $(top_srcdir)/vrjconfig/jconf.icns $(bundleroot)/Contents/Resources 173 $(INSTALL) $(EXTRA_INSTALL_ARGS) -m $(FILE_PERMS) \ 174 $(top_srcdir)/data/ControlPanel.xml $(bundle_vrj_datadir) 167 $(topdir)/Info.plist $(bundleroot)/Contents 168 $(INSTALL) $(EXTRA_INSTALL_ARGS) -m $(FILE_PERMS) \ 169 $(top_srcdir)/vrjconfig.icns $(bundleroot)/Contents/Resources 170 $(INSTALL) $(EXTRA_INSTALL_ARGS) -m $(FILE_PERMS) \ 171 $(top_srcdir)/jconf.icns $(bundleroot)/Contents/Resources 172 $(INSTALL) $(EXTRA_INSTALL_ARGS) -m $(FILE_PERMS) \ 173 $(top_srcdir)/../data/ControlPanel.xml $(bundle_vrj_datadir) 175 174 echo 'AAPL????' > $(bundleroot)/Contents/PkgInfo 176 175 /Developer/Tools/SetFile -a B $(bundleroot) … … 192 191 $(PERL) $(scriptdir)/install-dir.pl -i $(JCCL_DATA_DIR) \ 193 192 -m $(FILE_PERMS) $(GROUP_OPT_UNIX) -o $(bundle_jccl_datadir) \ 194 -v "$(topdir)/VARS.pl"$(EXTRA_INSTALL_ARGS)193 $(EXTRA_INSTALL_ARGS) 195 194 $(INSTALL) $(EXTRA_INSTALL_ARGS) -m $(FILE_PERMS) \ 196 195 $(JCCL_JAR_DIR)/*.jar $(bundle_jccl_javadir) … … 201 200 do \ 202 201 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 203 $(EXTRA_INSTALL_ARGS) $(topdir)/ vrjconfig/$$jar\202 $(EXTRA_INSTALL_ARGS) $(topdir)/$$jar \ 204 203 $(bundle_vrj_javadir) || exit 1; \ 205 204 done … … 209 208 do \ 210 209 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 211 $(EXTRA_INSTALL_ARGS) $(topdir)/ vrjconfig/$$bean.jar\210 $(EXTRA_INSTALL_ARGS) $(topdir)/$$bean.jar \ 212 211 $(bundle_vrj_beandir) || exit 1 ; \ 213 212 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 214 213 $(EXTRA_INSTALL_ARGS) \ 215 $(top_srcdir)/vrjconfig/$$bean.xml \ 216 $(bundle_vrj_beandir) || exit 1 ; \ 217 done 218 endif 219 endif 220 @echo "------------------------------------------------" 221 @echo "Installing Common Editors" 222 @echo "------------------------------------------------" 214 $(top_srcdir)/$$bean.xml $(bundle_vrj_beandir) || exit 1 ; \ 215 done 216 endif 217 endif 223 218 @$(MAKE) -C commoneditors install-commoneditors 224 @echo "------------------------------------------------"225 @echo "Installing Custom Editors"226 @echo "------------------------------------------------"227 219 @$(MAKE) -C customeditors install-customeditors 228 220 221 clean clobber: 222 $(ANT) clean 223 $(MAKE) -C commoneditors clean 224 $(MAKE) -C customeditors clean 229 225 ifdef GLOBAL_BUILD 230 CLEAN_DIRS+= $(top_srcdir)/bin 231 endif 232 233 include Makefile.inc 226 rm -rf $(top_srcdir)/bin 227 endif trunk/juggler/modules/vrjuggler/vrjconfig/commoneditors/Makefile.in
r16537 r16694 87 87 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 88 88 $(EXTRA_INSTALL_ARGS) \ 89 $(topdir)/vrjconfig/commoneditors/$$jar \ 90 $(jardir) || exit 1; \ 89 $(topdir)/commoneditors/$$jar $(jardir) || exit 1; \ 91 90 done 92 91 endif … … 105 104 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 106 105 $(EXTRA_INSTALL_ARGS) \ 107 $(topdir)/ vrjconfig/commoneditors/$$jar\108 $(bundle_vrj_javadir) || exit 1 ;\106 $(topdir)/commoneditors/$$jar $(bundle_vrj_javadir) || \ 107 exit 1 ; \ 109 108 done 110 109 endif trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/display_window/Makefile.in
r16537 r16694 49 49 srcdir= @srcdir@ 50 50 top_srcdir= @top_srcdir@ 51 EXTRA_SRCS_PATH= $(srcdir)/../tweek/idl52 51 INSTALL= @INSTALL@ 53 INSTALL_FILES=54 JAVA_IDL_OPTS= @JAVA_IDL_OPTS@ @JAVA_IDL_GENDIR_OPT@$(srcdir)55 JAVA_IDL_INCLUDES= @JAVA_IDL_INCFLAG@$(top_srcdir)56 52 57 53 BEANS= DisplayWindowEditor 58 59 _LOCAL_CLEAN= 160 61 include $(MKPATH)/dpp.obj.mk62 54 63 55 # ----------------------------------------------------------------------------- … … 66 58 build-editor: 67 59 @echo "------------------------------------------------" 68 @echo "Building DisplayWindowEditor java sources"60 @echo "Building DisplayWindowEditor Java sources" 69 61 @echo "------------------------------------------------" 70 62 $(ANT) 71 63 72 _clean:64 clean clobber: 73 65 $(ANT) clean 74 66 … … 87 79 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 88 80 $(EXTRA_INSTALL_ARGS) \ 89 $(topdir)/ vrjconfig/customeditors/display_window/$$jar\81 $(topdir)/customeditors/display_window/$$jar \ 90 82 $(javadir) || exit 1; \ 91 83 done … … 96 88 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 97 89 $(EXTRA_INSTALL_ARGS) \ 98 $(topdir)/ vrjconfig/customeditors/display_window/$$bean.jar\90 $(topdir)/customeditors/display_window/$$bean.jar \ 99 91 $(jardir) || exit 1 ; \ 100 92 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 101 93 $(EXTRA_INSTALL_ARGS) \ 102 $(top_srcdir)/ vrjconfig/customeditors/display_window/$$bean.xml\94 $(top_srcdir)/customeditors/display_window/$$bean.xml \ 103 95 $(jardir) || exit 1; \ 104 96 done … … 110 102 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 111 103 $(EXTRA_INSTALL_ARGS) \ 112 $(topdir)/ vrjconfig/customeditors/display_window/$$jar\104 $(topdir)/customeditors/display_window/$$jar \ 113 105 $(bundle_vrj_javadir) || exit 1 ; \ 114 106 done … … 119 111 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 120 112 $(EXTRA_INSTALL_ARGS) \ 121 $(topdir)/ vrjconfig/customeditors/display_window/$$bean.jar\113 $(topdir)/customeditors/display_window/$$bean.jar \ 122 114 $(bundle_jardir) || exit 1 ; \ 123 115 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 124 116 $(EXTRA_INSTALL_ARGS) \ 125 $(top_srcdir)/ vrjconfig/customeditors/display_window/$$bean.xml\117 $(top_srcdir)/customeditors/display_window/$$bean.xml \ 126 118 $(bundle_jardir) || exit 1 ; \ 127 119 done trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/display_window/build.xml.in
r15485 r16694 16 16 17 17 <path id="commoneditors.classpath"> 18 <pathelement path="${topdir}/ vrjconfig/commoneditors/CommonEditors.jar" />18 <pathelement path="${topdir}/commoneditors/CommonEditors.jar" /> 19 19 </path> 20 20 trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/flock/Makefile.in
r16574 r16694 32 32 33 33 # ----------------------------------------------------------------------------- 34 # Makefile.in for vrjuggler/vrjconfig/customeditors/flock. It 35 # requires GNUmake.34 # Makefile.in for vrjuggler/vrjconfig/customeditors/flock. It requires GNU 35 # make. 36 36 # 37 37 # Generated for use on @PLATFORM@ … … 49 49 srcdir= @srcdir@ 50 50 top_srcdir= @top_srcdir@ 51 EXTRA_SRCS_PATH= $(srcdir)/../tweek/idl52 51 INSTALL= @INSTALL@ 53 INSTALL_FILES=54 JAVA_IDL_OPTS= @JAVA_IDL_OPTS@ @JAVA_IDL_GENDIR_OPT@$(srcdir)55 JAVA_IDL_INCLUDES= @JAVA_IDL_INCFLAG@$(top_srcdir)56 52 57 53 BEANS= FlockEditor 58 59 _LOCAL_CLEAN= 160 61 include $(MKPATH)/dpp.obj.mk62 54 63 55 # ----------------------------------------------------------------------------- … … 66 58 build-editor: 67 59 @echo "------------------------------------------------" 68 @echo "Building FlockEditor java sources"60 @echo "Building FlockEditor Java sources" 69 61 @echo "------------------------------------------------" 70 62 $(ANT) 71 63 72 _clean:64 clean clobber: 73 65 $(ANT) clean 74 66 … … 87 79 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 88 80 $(EXTRA_INSTALL_ARGS) \ 89 $(topdir)/vrjconfig/customeditors/flock/$$jar \ 90 $(javadir) || exit 1; \ 81 $(topdir)/customeditors/flock/$$jar $(javadir) || exit 1; \ 91 82 done 92 83 endif … … 96 87 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 97 88 $(EXTRA_INSTALL_ARGS) \ 98 $(topdir)/ vrjconfig/customeditors/flock/$$bean.jar\99 $(jardir) || exit 1 ;\89 $(topdir)/customeditors/flock/$$bean.jar $(jardir) || \ 90 exit 1 ; \ 100 91 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 101 92 $(EXTRA_INSTALL_ARGS) \ 102 $(top_srcdir)/ vrjconfig/customeditors/flock/$$bean.xml\93 $(top_srcdir)/customeditors/flock/$$bean.xml \ 103 94 $(jardir) || exit 1; \ 104 95 done … … 110 101 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 111 102 $(EXTRA_INSTALL_ARGS) \ 112 $(topdir)/ vrjconfig/customeditors/flock/$$jar\103 $(topdir)/customeditors/flock/$$jar \ 113 104 $(bundle_vrj_javadir) || exit 1 ; \ 114 105 done … … 119 110 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 120 111 $(EXTRA_INSTALL_ARGS) \ 121 $(topdir)/ vrjconfig/customeditors/flock/$$bean.jar\112 $(topdir)/customeditors/flock/$$bean.jar \ 122 113 $(bundle_jardir) || exit 1 ; \ 123 114 $(INSTALL) -m $(FILE_PERMS) $(GROUP_OPT_UNIX) \ 124 115 $(EXTRA_INSTALL_ARGS) \ 125 $(top_srcdir)/ vrjconfig/customeditors/flock/$$bean.xml\116 $(top_srcdir)/customeditors/flock/$$bean.xml \ 126 117 $(bundle_jardir) || exit 1 ; \ 127 118 done trunk/juggler/modules/vrjuggler/vrjconfig/customeditors/flock/build.xml.in
r16574 r16694 16 16 17 17 <path id="commoneditors.classpath"> 18 <pathelement path="${topdir}/ vrjconfig/commoneditors/CommonEditors.jar" />18 <pathelement path="${topdir}/commoneditors/CommonEditors.jar" /> 19 19 </path> 20 20
