summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-19 20:03:38 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-11-19 20:03:38 +0000
commitc8aef85b4c388bcb0c7f2183dd8fa04f5174c3d0 (patch)
tree6b9f3e5f67e0e6c33d7ef23efcecf3147144211a
parentae868ca76bd49874e686d620bef91c47e289c2b1 (diff)
downloadATCD-c8aef85b4c388bcb0c7f2183dd8fa04f5174c3d0.tar.gz
*** empty log message ***
-rw-r--r--ACEXML/Makefile7
-rw-r--r--ACEXML/common/Makefile2
-rw-r--r--ACEXML/examples/Makefile17
-rw-r--r--ACEXML/examples/SAXPrint/Print_Handler.h2
-rw-r--r--ACEXML/examples/SAXPrint/SAXPrint_Handler.h2
5 files changed, 24 insertions, 6 deletions
diff --git a/ACEXML/Makefile b/ACEXML/Makefile
index a3785a71053..e355ff86344 100644
--- a/ACEXML/Makefile
+++ b/ACEXML/Makefile
@@ -4,9 +4,10 @@
# Makefile for the client programs that test the ACE network services
#----------------------------------------------------------------------------
-DIRS = Common \
- Basic_Parser \
- tests
+DIRS = common \
+ parser \
+ tests \
+ examples
#----------------------------------------------------------------------------
# Include macros and targets
diff --git a/ACEXML/common/Makefile b/ACEXML/common/Makefile
index 2d2b08b9534..54f91cb38b1 100644
--- a/ACEXML/common/Makefile
+++ b/ACEXML/common/Makefile
@@ -24,7 +24,7 @@ DEFS = $(addsuffix .h,$(FILES))
LSRC = $(addsuffix .cpp,$(FILES))
LIBS += $(ACELIB)
-CCFLAGS += -I..
+CCFLAGS += -I ..
BUILD = $(VLIB) $(VSHLIB)
diff --git a/ACEXML/examples/Makefile b/ACEXML/examples/Makefile
new file mode 100644
index 00000000000..a508ee1d096
--- /dev/null
+++ b/ACEXML/examples/Makefile
@@ -0,0 +1,17 @@
+#----------------------------------------------------------------------------
+# $Id$
+#
+# Makefile for the client programs that test the ACE network services
+#----------------------------------------------------------------------------
+
+DIRS = SAXPrint
+
+#----------------------------------------------------------------------------
+# Include macros and targets
+#----------------------------------------------------------------------------
+
+include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
+include $(ACE_ROOT)/include/makeinclude/macros.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.nolocal.GNU
diff --git a/ACEXML/examples/SAXPrint/Print_Handler.h b/ACEXML/examples/SAXPrint/Print_Handler.h
index ff943cdade7..d21f013a3b3 100644
--- a/ACEXML/examples/SAXPrint/Print_Handler.h
+++ b/ACEXML/examples/SAXPrint/Print_Handler.h
@@ -3,7 +3,7 @@
#ifndef ACEXML_PRINT_HANDLER_H
#define ACEXML_PRINT_HANDLER_H
-#include "Common/DefaultHandler.h"
+#include "common/DefaultHandler.h"
class ACEXML_Print_Handler : public ACEXML_DefaultHandler
{
diff --git a/ACEXML/examples/SAXPrint/SAXPrint_Handler.h b/ACEXML/examples/SAXPrint/SAXPrint_Handler.h
index e28ee471799..58e9a4c44ac 100644
--- a/ACEXML/examples/SAXPrint/SAXPrint_Handler.h
+++ b/ACEXML/examples/SAXPrint/SAXPrint_Handler.h
@@ -3,7 +3,7 @@
#ifndef ACEXML_SAXPRINT_HANDLER_H
#define ACEXML_SAXPRINT_HANDLER_H
-#include "Common/DefaultHandler.h"
+#include "common/DefaultHandler.h"
class ACEXML_SAXPrint_Handler : public ACEXML_DefaultHandler
{