summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-03-29 11:08:49 +0000
committerRüdiger Timm <rt@openoffice.org>2005-03-29 11:08:49 +0000
commit3de7358f15e8dbcb067aaeae2288a8ea0a00dea6 (patch)
tree9267c014d1514b95826b0b77d7288f2ad3b4b3ac /odk/examples/DevelopersGuide
parentb9b5d4800a5d01959d35518e3c0569f38557de11 (diff)
INTEGRATION: CWS sdkbugfix02 (1.6.10); FILE MERGED
2005/03/03 15:41:52 jsc 1.6.10.1: #41142# replace make with internal MAKE variable
Diffstat (limited to 'odk/examples/DevelopersGuide')
-rw-r--r--odk/examples/DevelopersGuide/Components/CppComponent/Makefile8
-rw-r--r--odk/examples/DevelopersGuide/Components/JavaComponent/Makefile8
2 files changed, 8 insertions, 8 deletions
diff --git a/odk/examples/DevelopersGuide/Components/CppComponent/Makefile b/odk/examples/DevelopersGuide/Components/CppComponent/Makefile
index 280c61bdf569..f2118a6f5474 100644
--- a/odk/examples/DevelopersGuide/Components/CppComponent/Makefile
+++ b/odk/examples/DevelopersGuide/Components/CppComponent/Makefile
@@ -2,9 +2,9 @@
#
# $RCSfile: Makefile,v $
#
-# $Revision: 1.6 $
+# $Revision: 1.7 $
#
-# last change: $Author: rt $ $Date: 2005-01-31 16:12:53 $
+# last change: $Author: rt $ $Date: 2005-03-29 12:08:34 $
#
# The Contents of this file are made available subject to the terms of
# the BSD license.
@@ -196,14 +196,14 @@ $(SAMPLE_NAME) : $(COMP_REGISTERFLAG) $(APP1_BINARY)
@echo --------------------------------------------------------------------------------
@echo Please use the following command to execute the example!
@echo -
- @echo make $(APP1_NAME).run
+ @echo $(MAKE) $(APP1_NAME).run
@echo --------
@echo The simple C++ component was installed if SDK_AUTO_DEPLOYMENT = YES.
@echo You can use this component inside your office installation, see the example
@echo description. You can also load the "$(QM)SimpleComponent.odt$(QM)" document containing
@echo a StarBasic macro which uses this component.
@echo -
- @echo make SimpleComponent.odt.load
+ @echo $(MAKE) SimpleComponent.odt.load
@echo --------------------------------------------------------------------------------
%.run: $(OUT_BIN)/%$(EXE_EXT)
diff --git a/odk/examples/DevelopersGuide/Components/JavaComponent/Makefile b/odk/examples/DevelopersGuide/Components/JavaComponent/Makefile
index 6d13314c72b4..85e23694bee0 100644
--- a/odk/examples/DevelopersGuide/Components/JavaComponent/Makefile
+++ b/odk/examples/DevelopersGuide/Components/JavaComponent/Makefile
@@ -2,9 +2,9 @@
#
# $RCSfile: Makefile,v $
#
-# $Revision: 1.6 $
+# $Revision: 1.7 $
#
-# last change: $Author: rt $ $Date: 2005-01-31 16:14:20 $
+# last change: $Author: rt $ $Date: 2005-03-29 12:08:49 $
#
# The Contents of this file are made available subject to the terms of
# the BSD license.
@@ -187,8 +187,8 @@ JavaComponentExample : $(REGISTERFLAG) $(APP1_JAR)
@echo --------------------------------------------------------------------------------
@echo Please use one of the following commands to execute the examples!
@echo -
- @echo make $(APP1_NAME).run
- @echo make $(APP1_NAME).local
+ @echo $(MAKE) $(APP1_NAME).run
+ @echo $(MAKE) $(APP1_NAME).local
@echo --------
@echo The Java components were installed if SDK_AUTO_DEPLOYMENT = YES.
@echo You can use this component inside your office installation, see the