summaryrefslogtreecommitdiff
path: root/ACEXML
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-07-14 18:49:52 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-07-14 18:49:52 +0000
commit4e6e45ed5fbe978a6f8a203398bd60555df96970 (patch)
treeac7e5fcdb86a08281ce954fbb331548af2f9cf92 /ACEXML
parent3068df4c1a3620dde8da4810e59a988477ae304b (diff)
downloadATCD-4e6e45ed5fbe978a6f8a203398bd60555df96970.tar.gz
ChangeLogTag: Mon Jul 14 18:47:52 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACEXML')
-rw-r--r--ACEXML/ChangeLog10
-rw-r--r--ACEXML/apps/svcconf/Makefile4
-rw-r--r--ACEXML/common/Makefile4
-rw-r--r--ACEXML/examples/SAXPrint/Makefile4
-rw-r--r--ACEXML/parser/parser/Makefile4
-rw-r--r--ACEXML/tests/Makefile7
6 files changed, 10 insertions, 23 deletions
diff --git a/ACEXML/ChangeLog b/ACEXML/ChangeLog
index 65d395a7063..389c9c78259 100644
--- a/ACEXML/ChangeLog
+++ b/ACEXML/ChangeLog
@@ -1,3 +1,13 @@
+Mon Jul 14 18:49:01 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * apps/svcconf/Makefile:
+ * common/Makefile:
+ * examples/SAXPrint/Makefile:
+ * parser/parser/Makefile:
+ * tests/Makefile:
+ Removed windows specific rules. They are not needed and only
+ cause problems when using a different command shell then cmd
+ like msys. This solves errors in the MinGW build.
Sat Jul 5 13:33:36 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
* Makefile:
diff --git a/ACEXML/apps/svcconf/Makefile b/ACEXML/apps/svcconf/Makefile
index 4afa1cd9673..875ce50aee7 100644
--- a/ACEXML/apps/svcconf/Makefile
+++ b/ACEXML/apps/svcconf/Makefile
@@ -7,8 +7,4 @@ include $(ACE_ROOT)/include/makeinclude/macros.GNU
TARGETS_NESTED := $(TARGETS_NESTED:.nested=)
$(TARGETS_NESTED):
-ifneq (Windows,$(findstring Windows,$(OS)))
@$(MAKE) -f Makefile.ACEXML_XML_Svc_Conf_Parser -C . $(@);
-else
- -@cmd /c "$(MAKE) -f Makefile.ACEXML_XML_Svc_Conf_Parser -C . $(@)"
-endif
diff --git a/ACEXML/common/Makefile b/ACEXML/common/Makefile
index b817a5c4859..f400901cceb 100644
--- a/ACEXML/common/Makefile
+++ b/ACEXML/common/Makefile
@@ -7,8 +7,4 @@ include $(ACE_ROOT)/include/makeinclude/macros.GNU
TARGETS_NESTED := $(TARGETS_NESTED:.nested=)
$(TARGETS_NESTED):
-ifneq (Windows,$(findstring Windows,$(OS)))
@$(MAKE) -f Makefile.ACEXML -C . $(@);
-else
- -@cmd /c "$(MAKE) -f Makefile.ACEXML -C . $(@)"
-endif
diff --git a/ACEXML/examples/SAXPrint/Makefile b/ACEXML/examples/SAXPrint/Makefile
index 79a07ed6ca5..30dd725f690 100644
--- a/ACEXML/examples/SAXPrint/Makefile
+++ b/ACEXML/examples/SAXPrint/Makefile
@@ -7,8 +7,4 @@ include $(ACE_ROOT)/include/makeinclude/macros.GNU
TARGETS_NESTED := $(TARGETS_NESTED:.nested=)
$(TARGETS_NESTED):
-ifneq (Windows,$(findstring Windows,$(OS)))
@$(MAKE) -f Makefile.SAXPrint -C . $(@);
-else
- -@cmd /c "$(MAKE) -f Makefile.SAXPrint -C . $(@)"
-endif
diff --git a/ACEXML/parser/parser/Makefile b/ACEXML/parser/parser/Makefile
index f9ea338b367..84c161af5a6 100644
--- a/ACEXML/parser/parser/Makefile
+++ b/ACEXML/parser/parser/Makefile
@@ -7,8 +7,4 @@ include $(ACE_ROOT)/include/makeinclude/macros.GNU
TARGETS_NESTED := $(TARGETS_NESTED:.nested=)
$(TARGETS_NESTED):
-ifneq (Windows,$(findstring Windows,$(OS)))
@$(MAKE) -f Makefile.ACEXML_Parser -C . $(@);
-else
- -@cmd /c "$(MAKE) -f Makefile.ACEXML_Parser -C . $(@)"
-endif
diff --git a/ACEXML/tests/Makefile b/ACEXML/tests/Makefile
index ce3a0589cc8..2a2c759ac29 100644
--- a/ACEXML/tests/Makefile
+++ b/ACEXML/tests/Makefile
@@ -12,13 +12,6 @@ MFILES = \
Makefile.ContentHandler_Test
$(TARGETS_NESTED):
-ifneq (Windows,$(findstring Windows,$(OS)))
@for file in $(MFILES); do \
$(MAKE) -f `basename $$file` -C `dirname $$file` $(@); \
done
-else
- -@cmd /c "$(MAKE) -f Makefile.Transcoder_Test -C . $(@)"
- -@cmd /c "$(MAKE) -f Makefile.NamespaceSupport_Test -C . $(@)"
- -@cmd /c "$(MAKE) -f Makefile.HttpCharStream_Test -C . $(@)"
- -@cmd /c "$(MAKE) -f Makefile.ContentHandler_Test -C . $(@)"
-endif