summaryrefslogtreecommitdiff
path: root/ACEXML/tests/Makefile.NamespaceSupport_Test
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/tests/Makefile.NamespaceSupport_Test')
-rw-r--r--ACEXML/tests/Makefile.NamespaceSupport_Test48
1 files changed, 48 insertions, 0 deletions
diff --git a/ACEXML/tests/Makefile.NamespaceSupport_Test b/ACEXML/tests/Makefile.NamespaceSupport_Test
new file mode 100644
index 00000000000..f418135f6ec
--- /dev/null
+++ b/ACEXML/tests/Makefile.NamespaceSupport_Test
@@ -0,0 +1,48 @@
+#----------------------------------------------------------------------------
+# GNU Makefile
+#----------------------------------------------------------------------------
+
+MAKEFILE = Makefile.NamespaceSupport_Test
+DEPENDENCY_FILE = .depend.Makefile.NamespaceSupport_Test
+BIN_UNCHECKED = NamespaceSupport_Test
+
+
+
+FILES = \
+ NamespaceSupport_Test
+
+#----------------------------------------------------------------------------
+# Include macros and targets
+#----------------------------------------------------------------------------
+include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
+
+BIN = $(BIN_UNCHECKED)
+
+OBJS = $(addsuffix .o, $(notdir $(FILES)))
+SRC = $(addsuffix .cpp, $(FILES))
+ACELIB = -lACE
+
+include $(ACE_ROOT)/include/makeinclude/macros.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
+
+CPPFLAGS += -I../..
+LDFLAGS += -L../../ace
+
+LDLIBS = -lACEXML
+
+#----------------------------------------------------------------------------
+# Local targets
+#----------------------------------------------------------------------------
+
+$(BIN): $(addprefix $(VDIR), $(OBJS))
+ $(LINK.cc) $(LDFLAGS) $(CC_OUTPUT_FLAG) $@ $^ $(VLDLIBS) $(POSTLINK)
+
+#----------------------------------------------------------------------------
+# Dependencies
+#----------------------------------------------------------------------------
+# DO NOT DELETE THIS LINE -- g++dep uses it.
+# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
+
+# IF YOU PUT ANYTHING HERE IT WILL GO AWAY