From b1c2d53ddfdecb584efc9bdee838794f1afabe7e Mon Sep 17 00:00:00 2001 From: storri Date: Mon, 28 Jan 2002 20:28:35 +0000 Subject: Adding makefile for Sockets --- ace/Sockets/Makefile | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100755 ace/Sockets/Makefile 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. + + -- cgit v1.2.1