summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-24 18:46:11 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-24 18:46:11 +0000
commit0f43d577b10b84f01d7cf34e144cb9971dca9a84 (patch)
tree1955cc877a0f27518ff3c0a3f23da73d406735a7
parentfc82c0e3d4bb772773e2dcb41ff4c96e86b1777b (diff)
downloadATCD-0f43d577b10b84f01d7cf34e144cb9971dca9a84.tar.gz
ChangeLogTag: Fri Mar 24 10:45:01 2000 Priyanka Gontla <pgontla@ece.uci.edu>
-rw-r--r--TAO/docs/tutorials/Quoter/Simple/Persistent/Makefile54
1 files changed, 54 insertions, 0 deletions
diff --git a/TAO/docs/tutorials/Quoter/Simple/Persistent/Makefile b/TAO/docs/tutorials/Quoter/Simple/Persistent/Makefile
new file mode 100644
index 00000000000..921fb0744fb
--- /dev/null
+++ b/TAO/docs/tutorials/Quoter/Simple/Persistent/Makefile
@@ -0,0 +1,54 @@
+#----------------------------------------------------------------------------
+#
+# $Id$
+#
+#----------------------------------------------------------------------------
+
+#----------------------------------------------------------------------------
+# Local macros
+#----------------------------------------------------------------------------
+
+ifndef TAO_ROOT
+ TAO_ROOT = $(ACE_ROOT)/TAO
+endif # ! TAO_ROOT
+
+LDLIBS = -lTAO
+
+IDLFILES = QuoterC QuoterS
+BIN = server client
+
+SRC = $(addsuffix .cpp, $(BIN) $(IDLFILES) Stock_i Stock_Factory_i)
+
+SERVER_OBJS = $(addsuffix .o, server Stock_i Stock_Factory_i $(IDLFILES))
+CLIENT_OBJS = $(addsuffix .o, client Stock_i Stock_Factory_i $(IDLFILES))
+
+#----------------------------------------------------------------------------
+# 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
+#----------------------------------------------------------------------------
+
+.PRECIOUS: $(foreach ext, $(IDL_EXT), Quoter$(ext))
+
+server: $(addprefix $(VDIR),$(SERVER_OBJS))
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
+
+client: $(addprefix $(VDIR),$(CLIENT_OBJS))
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
+
+realclean: clean
+ -$(RM) $(foreach ext, $(IDL_EXT), Quoter$(ext))
+
+# DO NOT DELETE THIS LINE -- g++dep uses it.
+# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
+