blob: f8099722c3e3b49ae9d4a8ce39655360255de5d2 (
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
|
##----------------------------------------------------------------------------
## $Id$
##
## Makefile for client logging applications
##----------------------------------------------------------------------------
##
## 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)
## LDFLAGS =
## Libtool will automatically link against the "proper" library.
## Do not change the "libACE.la." It is not a typographical error!
LDADD = $(top_builddir)/ace/libACE.la
noinst_PROGRAMS = \
direct_logging \
indirect_logging
direct_logging_SOURCES = direct_logging.cpp
indirect_logging_SOURCES = indirect_logging.cpp
|