summaryrefslogtreecommitdiff
path: root/ACEXML/tests/Makefile.ContentHandler_Test
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/tests/Makefile.ContentHandler_Test')
-rw-r--r--ACEXML/tests/Makefile.ContentHandler_Test54
1 files changed, 0 insertions, 54 deletions
diff --git a/ACEXML/tests/Makefile.ContentHandler_Test b/ACEXML/tests/Makefile.ContentHandler_Test
deleted file mode 100644
index 17b5d817598..00000000000
--- a/ACEXML/tests/Makefile.ContentHandler_Test
+++ /dev/null
@@ -1,54 +0,0 @@
-#----------------------------------------------------------------------------
-# GNU Makefile
-#----------------------------------------------------------------------------
-MAKEFILE = Makefile.ContentHandler_Test
-DEPENDENCY_FILE = .depend.Makefile.ContentHandler_Test
-BIN_UNCHECKED = ContentHandler_Test
-
-
-
-FILES = \
- ContentHandler_Test
-#----------------------------------------------------------------------------
-# Include macros and targets
-#----------------------------------------------------------------------------
-
-ACE_SHLIBS = -lACE
-
-include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
-
-BIN = $(BIN_UNCHECKED)
-
-OBJS = $(addsuffix .o, $(notdir $(FILES)))
-SRC = $(addsuffix .cpp, $(FILES))
-
-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../..
-ifeq ($(static_libs),1)
- ifneq ($(LIB),)
- CPPFLAGS += -DACE_AS_STATIC_LIBS
- endif
-endif
-
-
-LDFLAGS += -L../../ACEXML/common -L../../ACEXML/parser/parser -L../../ace
-
-
-
-LDLIBS = -lACEXML_Parser -lACEXML
-#----------------------------------------------------------------------------
-# Local targets
-#----------------------------------------------------------------------------
-
-$(BIN): $(addprefix $(VDIR), $(OBJS))
- $(LINK.cc) $(LDFLAGS) $(CC_OUTPUT_FLAG) $@ $^ $(VLDLIBS) $(POSTLINK)
-
-realclean: clean
-ifneq ($(GENERATED_DIRTY),)
- -$(RM) -r $(GENERATED_DIRTY)
-endif
-