summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-06 20:47:31 +0000
committernaga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-06 20:47:31 +0000
commitce7551d8fe2b181f7541d2f1e909107819137a6a (patch)
tree6fbd13e548c8a7f6a7ecb8fef680ffa1c05ba71d
parent623879ab7cea05e1b4e455e5e9f76db0ac976be9 (diff)
downloadATCD-ce7551d8fe2b181f7541d2f1e909107819137a6a.tar.gz
*** empty log message ***
-rw-r--r--TAO/orbsvcs/tests/AVStreams/sfp/Makefile64
1 files changed, 64 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/sfp/Makefile b/TAO/orbsvcs/tests/AVStreams/sfp/Makefile
new file mode 100644
index 00000000000..6e7576c7fcd
--- /dev/null
+++ b/TAO/orbsvcs/tests/AVStreams/sfp/Makefile
@@ -0,0 +1,64 @@
+#----------------------------------------------------------------------------
+# $Id$
+#
+# Top-level Makefile for the SFP test of the TAO ORB
+#
+#----------------------------------------------------------------------------
+
+#----------------------------------------------------------------------------
+# Local macros
+#----------------------------------------------------------------------------
+
+LDLIBS = -lorbsvcs -lTAO -lACE
+
+PROG_SRCS = client.cpp server.cpp
+
+LSRC = $(PROG_SRCS)
+
+AVStreams_SERVER_OBJS = server.o
+AVStreams_CLIENT_OBJS = client.o
+
+BIN = client server
+
+BUILD = $(BIN)
+VLDLIBS = $(LDLIBS:%=%$(VAR))
+
+#----------------------------------------------------------------------------
+# 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.nonested.GNU
+#include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
+
+ifndef TAO_ROOT
+TAO_ROOT = $(ACE_ROOT)/TAO
+endif
+
+DCFLAGS = -g
+LDFLAGS += -L$(TAO_ROOT)/orbsvcs/orbsvcs -L$(TAO_ROOT)/tao
+CPPFLAGS += -I$(TAO_ROOT)/orbsvcs -I$(TAO_ROOT) $(TSS_ORB_FLAG)
+
+server:$(addprefix $(VDIR),$(AVStreams_SERVER_OBJS))
+ $(LINK.cc) $(LDFAGS) -o $@@ $^ $(VLDLIBS)
+
+client:$(addprefix $(VDIR),$(AVStreams_CLIENT_OBJS))
+ $(LINK.cc) $(LDFLAGS) -o $@@ $^ $(VLDLIBS)
+
+#main: $(addprefix $(VDIR), $(COSPROPERTY_OBJS))
+# $(LINK.cc) $(LDFAGS) -o $@@ $^ $(VLDLIBS)
+
+
+realclean: clean
+ -/bin/rm -rf
+
+
+# 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