summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Forms/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Forms/Makefile')
-rw-r--r--odk/examples/DevelopersGuide/Forms/Makefile14
1 files changed, 5 insertions, 9 deletions
diff --git a/odk/examples/DevelopersGuide/Forms/Makefile b/odk/examples/DevelopersGuide/Forms/Makefile
index de1b63762e33..5dfd4dd2446f 100644
--- a/odk/examples/DevelopersGuide/Forms/Makefile
+++ b/odk/examples/DevelopersGuide/Forms/Makefile
@@ -2,9 +2,9 @@
#
# $RCSfile: Makefile,v $
#
-# $Revision: 1.3 $
+# $Revision: 1.4 $
#
-# last change: $Author: hr $ $Date: 2003-06-30 15:28:43 $
+# last change: $Author: rt $ $Date: 2004-05-18 13:23:52 $
#
# The Contents of this file are made available subject to the terms of
# the BSD license.
@@ -68,11 +68,7 @@ JAVAFILES = \
CLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/%.class,$(JAVAFILES))
-SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(OFFICE_CLASSES_DIR)/jurt.jar\
- $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/unoil.jar\
- $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/ridl.jar\
- $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/sandbox.jar\
- $(PATH_SEPARATOR)$(OFFICE_CLASSES_DIR)/juh.jar\
+SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
$(PATH_SEPARATOR)$(OUT_COMP_CLASS))
@@ -85,7 +81,7 @@ include $(SETTINGS)/stdtarget.mk
$(CLASSFILES) : $(JAVAFILES)
-$(MKDIR) $(subst /,$(PS),$(@D))
- javac $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $(JAVAFILES)
+ $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $(JAVAFILES)
FormsExample : $(CLASSFILES)
@echo --------------------------------------------------------------------------------
@@ -97,7 +93,7 @@ FormsExample : $(CLASSFILES)
@echo --------------------------------------------------------------------------------
%.run: $(OUT_COMP_CLASS)/%.class
- java -classpath "$(SDK_CLASSPATH)" $(basename $@) -d OO_SDK_Demo_DB
+ $(SDK_JAVA) -classpath "$(SDK_CLASSPATH)" $(basename $@) -d OO_SDK_Demo_DB
.PHONY: clean
clean :