summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstorri <storri@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-28 20:28:35 +0000
committerstorri <storri@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-28 20:28:35 +0000
commitb1c2d53ddfdecb584efc9bdee838794f1afabe7e (patch)
tree0100370bde5d2f8255918f98b5f1b5945b9983e2
parent85d53e96caf312f0494b0fd89ac5abd4212c3253 (diff)
downloadATCD-b1c2d53ddfdecb584efc9bdee838794f1afabe7e.tar.gz
Adding makefile for Sockets
-rwxr-xr-xace/Sockets/Makefile67
1 files changed, 67 insertions, 0 deletions
diff --git a/ace/Sockets/Makefile b/ace/Sockets/Makefile
new file mode 100755
index 00000000000..9316596fe6e
--- /dev/null
+++ b/ace/Sockets/Makefile
@@ -0,0 +1,67 @@
+# $Id$
+
+#----------------------------------------------------------------------------
+# Makefile for the libACE_Sockets
+#----------------------------------------------------------------------------
+
+MAKEFILE = Makefile
+LIBOS = libACE_Sockets
+LIB = $(LIBOS).a
+SHLIB = $(LIBOS).$(SOEXT)
+
+
+OS_FILES = \
+ IPC_SAP\
+ LSOCK_Acceptor\
+ LSOCK_CODgram\
+ LSOCK_Connector\
+ LSOCK\
+ LSOCK_Dgram\
+ LSOCK_Stream\
+ SOCK_Acceptor\
+ SOCK_CODgram\
+ SOCK_Connector\
+ SOCK\
+ SOCK_Dgram_Bcast\
+ SOCK_Dgram\
+ SOCK_Dgram_Mcast\
+ SOCK_IO\
+ SOCK_Stream
+
+#----------------------------------------------------------------------------
+# Include macros and targets
+#----------------------------------------------------------------------------
+
+include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
+
+####
+#### ACE_COMPONENTS support.
+####
+FILES += $(OS_FILES)
+
+LSRC = $(addsuffix .cpp,$(FILES))
+
+include $(ACE_ROOT)/include/makeinclude/macros.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
+include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
+
+INSTALL =
+
+clean:
+ $(RM) -f $(LIBOS).a $(LIBOS).so
+
+#----------------------------------------------------------------------------
+# Local targets
+#----------------------------------------------------------------------------
+
+
+
+#----------------------------------------------------------------------------
+# Dependencies
+#----------------------------------------------------------------------------
+# DO NOT DELETE THIS LINE -- g++dep uses it.
+# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
+
+