~ubuntu-branches/ubuntu/lucid/rsyslog/lucid

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2007-10-19 17:21:49 UTC
  • Revision ID: james.westby@ubuntu.com-20071019172149-ie6ej2xve33mxiu7
Tags: upstream-1.19.10
ImportĀ upstreamĀ versionĀ 1.19.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
sbin_PROGRAMS = rklogd rfc3195d rsyslogd
 
2
 
 
3
rklogd_SOURCES = \
 
4
        klogd.c \
 
5
        klogd.h \
 
6
        syslog.c \
 
7
        pidfile.c \
 
8
        pidfile.h \
 
9
        ksym.c \
 
10
        ksyms.h \
 
11
        ksym_mod.c \
 
12
        module.h
 
13
 
 
14
rfc3195d_SOURCES = rfc3195d.c rsyslog.h
 
15
 
 
16
rsyslogd_SOURCES = \
 
17
        syslogd.c \
 
18
        syslogd.h \
 
19
        pidfile.c \
 
20
        pidfile.h \
 
21
        template.c \
 
22
        outchannel.c \
 
23
        stringbuf.c \
 
24
        stringbuf.h \
 
25
        srUtils.c \
 
26
        srUtils.h \
 
27
        parse.c \
 
28
        parse.h \
 
29
        syslogd-types.h \
 
30
        template.h \
 
31
        outchannel.h \
 
32
        liblogging-stub.h \
 
33
        net.c \
 
34
        net.h \
 
35
        msg.c \
 
36
        msg.h \
 
37
        omshell.c \
 
38
        omshell.h \
 
39
        omusrmsg.c \
 
40
        omusrmsg.h \
 
41
        omfwd.c \
 
42
        omfwd.h \
 
43
        tcpsyslog.c \
 
44
        tcpsyslog.h \
 
45
        omfile.c \
 
46
        omfile.h \
 
47
        omdiscard.c \
 
48
        omdiscard.h \
 
49
        modules.c \
 
50
        modules.h \
 
51
        module-template.h \
 
52
        objomsr.c \
 
53
        objomsr.h \
 
54
        cfsysline.c \
 
55
        cfsysline.h \
 
56
        linkedlist.c \
 
57
        linkedlist.h \
 
58
        iminternal.c \
 
59
        iminternal.h \
 
60
        action.c \
 
61
        action.h
 
62
 
 
63
rsyslogd_CPPFLAGS = -D_PATH_MODDIR=\"$(pkglibdir)/\"
 
64
rsyslogd_LDADD = $(zlib_libs) $(pthreads_libs) -ldl
 
65
rsyslogd_LDFLAGS = -export-dynamic
 
66
 
 
67
man_MANS = rfc3195d.8 rklogd.8 rsyslogd.8 rsyslog.conf.5 
 
68
 
 
69
EXTRA_DIST = \
 
70
        redhat/rsyslog.conf \
 
71
        redhat/rsyslog.init \
 
72
        redhat/rsyslog.log \
 
73
        redhat/rsyslog.sysconfig \
 
74
        freebsd/rsyslogd \
 
75
        slackware/rc.rsyslogd \
 
76
        contrib/README \
 
77
        $(man_MANS)
 
78
 
 
79
SUBDIRS = doc
 
80
 
 
81
if ENABLE_MYSQL
 
82
SUBDIRS += plugins/ommysql
 
83
endif