[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
rlog 1.3.7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,440 kB
  • ctags: 3,785
  • sloc: sh: 11,016; cpp: 1,533; makefile: 127
file content (50 lines) | stat: -rw-r--r-- 1,020 bytes parent folder | download | duplicates (3)
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

INCLUDES = $(all_includes) $(USER_INCLUDES) -I$(top_srcdir)
# build everything in the "rlog" component.. 
AM_CXXFLAGS = -DRLOG_COMPONENT="rlog" -DUSE_VALGRIND=@USE_VALGRIND@


lib_LTLIBRARIES = librlog.la

librlog_la_SOURCES = \
    rlog.cpp \
    rloginit.cpp \
    rloglocation.cpp \
    Error.cpp \
    RLogChannel.cpp \
    RLogNode.cpp \
    RLogPublisher.cpp \
    StdioNode.cpp \
    SyslogNode.cpp

librlog_la_LDFLAGS = -version-info $(LIBRLOG_VERSION) $(USER_LDFLAGS)

librlogincludedir=$(includedir)/rlog
librloginclude_HEADERS = \
    common.h \
    Error.h \
    Lock.h \
    Mutex.h \
    rlog-c99.h \
    RLogChannel.h \
    rlog.h \
    rloginit.h \
    rloglocation.h \
    RLogNode.h \
    rlog-novariadic.h \
    rlog-prec99.h \
    RLogPublisher.h \
    RLogTime.h \
    StdioNode.h \
    SyslogNode.h


noinst_PROGRAMS = test testlog

test_SOURCES = test.cpp
test_LDADD = librlog.la 

testlog_SOURCES = testlog.cpp
testlog_LDADD = librlog.la
testlog_CXXFLAGS = $(AM_CXXFLAGS) -DHAVE_TSC=@HAVE_TSC@