diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-20 08:06:21 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-20 08:06:21 +0000 |
commit | 4644e6d0fb62412565f1b54d95a8eebf0d46b727 (patch) | |
tree | 493ea7eb22662cdb19f117405288119513932fd9 /netsvcs/lib | |
parent | 8d9a178a223bf4d9810dc35da271f0cab75725ec (diff) | |
download | ATCD-4644e6d0fb62412565f1b54d95a8eebf0d46b727.tar.gz |
Starting to do the "real" ACE+autoconf integration.
Diffstat (limited to 'netsvcs/lib')
-rw-r--r-- | netsvcs/lib/Makefile.am | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/netsvcs/lib/Makefile.am b/netsvcs/lib/Makefile.am new file mode 100644 index 00000000000..00f0a13bf5b --- /dev/null +++ b/netsvcs/lib/Makefile.am @@ -0,0 +1,53 @@ +##--------------------------------------------------------------------------- +## $Id$ +## +## Makefile for the server-side ACE network services +## +##--------------------------------------------------------------------------- + +## +## Process this file with automake to create Makefile.in +## + +## The number in AUTOMAKE_OPTIONS is the minimum required version automake +## needed to process this file. +AUTOMAKE_OPTIONS = 1.4 + +INCLUDES = -I$(top_builddir) -I$(top_srcdir) + +lib_LTLIBRARIES = libnetsvcs.la + +libnetsvcs_la_SOURCES = \ + Base_Optimizer.cpp \ + Client_Logging_Handler.cpp \ + Log_Message_Receiver.cpp \ + Logging_Strategy.cpp \ + Name_Handler.cpp \ + Server_Logging_Handler.cpp \ + Server_Logging_Handler_T.cpp \ + TS_Clerk_Handler.cpp \ + TS_Server_Handler.cpp \ + Token_Handler.cpp + +libnetsvcs_la_LDFLAGS = \ + -version-info @ACE_CURRENT@:@ACE_REVISION@:@ACE_AGE@ + +noinst_HEADERS = \ + Base_Optimizer.h \ + Client_Logging_Handler.h \ + Log_Message_Receiver.h \ + Logging_Strategy.h \ + Name_Handler.h \ + Server_Logging_Handler.h \ + Server_Logging_Handler_T.h \ + TS_Clerk_Handler.h \ + TS_Server_Handler.h \ + Token_Handler.h + +## What do we about the below? It was in the original libnetsvcs Makefile. +## ifeq ($(SUPPRESS_DASH_G),1) +## #### Build this target without -g on some platforms. +## $(VDIR)Server_Logging_Handler.o $(VSHDIR)Server_Logging_Handler.$(SOEXT): +## $(COMPILE-NO_DASH_G.cc) -o $@ $< +## endif # SUPPRESS_DASH_G + |