summaryrefslogtreecommitdiff
path: root/TAO/tests/IORManipulation/Makefile
diff options
context:
space:
mode:
authorfredk <fredk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-28 23:06:14 +0000
committerfredk <fredk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-28 23:06:14 +0000
commit1d6a84a05367b3bd451b9eadb1519da3fbad4f24 (patch)
treeca66a95aab044eac614ce75b9695eac8a3a25359 /TAO/tests/IORManipulation/Makefile
parent2eb2df16bbfdb56fb9d01f2d56be480056ee2710 (diff)
downloadATCD-1d6a84a05367b3bd451b9eadb1519da3fbad4f24.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tests/IORManipulation/Makefile')
-rw-r--r--TAO/tests/IORManipulation/Makefile70
1 files changed, 70 insertions, 0 deletions
diff --git a/TAO/tests/IORManipulation/Makefile b/TAO/tests/IORManipulation/Makefile
new file mode 100644
index 00000000000..bc378220ee4
--- /dev/null
+++ b/TAO/tests/IORManipulation/Makefile
@@ -0,0 +1,70 @@
+#----------------------------------------------------------------------------
+#
+# $Id$
+#
+#----------------------------------------------------------------------------
+
+#----------------------------------------------------------------------------
+# Local macros
+#----------------------------------------------------------------------------
+
+ifndef TAO_ROOT
+ TAO_ROOT = $(ACE_ROOT)/TAO
+endif # ! TAO_ROOT
+
+LDLIBS = -lTAO
+
+IDL_SRC =
+
+PROG_SRCS = IORTest.cpp
+
+SRC = $(PROG_SRCS)
+
+SIMPLE_CLT_OBJS = IORTest.o
+SIMPLE_SVR_OBJS =
+
+VLDLIBS = $(LDLIBS:%=%$(VAR))
+
+BIN2 = IORTest
+
+#### If the TAO orbsvcs library wasn't built with sufficient components,
+#### don't try to build here.
+ BIN = $(BIN2)
+
+#----------------------------------------------------------------------------
+# Include macros and targets
+#----------------------------------------------------------------------------
+
+include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
+include $(ACE_ROOT)/include/makeinclude/macros.GNU
+include $(TAO_ROOT)/rules.tao.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
+include $(TAO_ROOT)/taoconfig.mk
+
+#----------------------------------------------------------------------------
+# Local targets
+#----------------------------------------------------------------------------
+
+LDFLAGS += -L$(TAO_ROOT)/tao -L$(ACE_ROOT)/ace
+CPPFLAGS += -I$(TAO_ROOT)/orbsvcs
+
+.PRECIOUS:
+
+IORTest: $(addprefix $(VDIR),$(SIMPLE_CLT_OBJS))
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
+
+realclean: clean
+ -$(RM) -rf IORTest
+
+#----------------------------------------------------------------------------
+# 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