summaryrefslogtreecommitdiff
path: root/ACEXML/tests/Makefile.Transcoder_Test
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-30 03:31:49 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-30 03:31:49 +0000
commitaa3cd957b6af79cc8b48c8d0ce8bde233af436fe (patch)
treeeb96ffb2db36d1e7a74345f2a7828a84c64ca208 /ACEXML/tests/Makefile.Transcoder_Test
parent240eac73f8c3d9d3f053fb85aa309dcd9a0326ef (diff)
downloadATCD-aa3cd957b6af79cc8b48c8d0ce8bde233af436fe.tar.gz
ChangeLogTag: Thu May 29 22:03:40 2003 Krishnakumar B <kitty@spam.invalid.domain>
Diffstat (limited to 'ACEXML/tests/Makefile.Transcoder_Test')
-rw-r--r--ACEXML/tests/Makefile.Transcoder_Test55
1 files changed, 55 insertions, 0 deletions
diff --git a/ACEXML/tests/Makefile.Transcoder_Test b/ACEXML/tests/Makefile.Transcoder_Test
new file mode 100644
index 00000000000..04c74e8d766
--- /dev/null
+++ b/ACEXML/tests/Makefile.Transcoder_Test
@@ -0,0 +1,55 @@
+#----------------------------------------------------------------------------
+# GNU Makefile
+#----------------------------------------------------------------------------
+MAKEFILE = Makefile.Transcoder_Test
+DEPENDENCY_FILE = .depend.Makefile.Transcoder_Test
+BIN_UNCHECKED = Transcoder_Test
+
+
+
+FILES = \
+ Transcoder_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../..
+
+
+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
+