blob: 7e52a99fdfe4645e09070ca2c7364ef7b9cd0174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
##---------------------------------------------------------------------------
## $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
## Clean up template repositories, etc.
clean-local:
-rm -f *.bak *.rpo *.sym lib*.*_pure_* Makefile.old core
-rm -rf ptrepository Templates.DB gcctemp.c gcctemp so_locations
## 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
|