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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
## Process this file with automake to produce Makefile.in
## $Id: Makefile.am,v 1.73 2001/11/22 18:10:16 flacoste Exp $
## Copyright (C) 2000-2001 Stichting LogReport Foundation LogReport@LogReport.org
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program (see COPYING); if not, check with
## http://www.gnu.org/copyleft/gpl.html or write to the Free Software
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
include $(top_srcdir)/include/rules.mk
alllibdir = $(libexecdir)/$(PACKAGE)
## beware: lr_xml2ascii should get installed in bin_, since that's
## used as a standalone tool in a client setup, to typeset the received raw
## report, after deanonimizing.
alllib_SCRIPTS = \
lr_addresses2serviceflags \
lr_check_prereq \
lr_db_fetch \
lr_db_purge \
lr_db_store \
lr_dlf_analyze \
lr_dlf2xml \
lr_getaddresses \
lr_getbody \
lr_inflate \
lr_log2xml \
lr_processmail \
lr_prof_report \
lr_smtpfield \
lr_spool \
lr_tag \
lr_xml2dbx \
lr_xml2html \
lr_xml2pdf \
lr_xml2png \
lr_xml2logml \
lr_xml2rtf \
lr_xml2xhtml \
lr_xslt
bin_SCRIPTS = lr_anonimize \
lr_anondump \
lr_config \
lr_cron \
lr_deanonimize \
lr_desyslog \
lr_log2mail \
lr_log2report \
lr_rawmail2mail \
lr_run \
lr_spoold \
lr_xml2ascii
man_MANS = \
lr_addresses2serviceflags.1 \
lr_anondump.1 \
lr_anonimize.1 \
lr_deanonimize.1 \
lr_dlf_analyze.1 \
lr_dlf2xml.1 \
lr_getaddresses.1 \
lr_prof_report.1 \
lr_smtpfield.1 \
lr_xml2ascii.1 \
lr_xml2png.1
## I don't understand why we have to set this here explicitely.
## Normally all _SCRIPTS gets included.
EXTRA_DIST = lr_getbody lr_desyslog lr_inflate lr_processmail
CLEANFILES = $(man_MANS)
lr_addresses2serviceflags.1: lr_addresses2serviceflags
$(PERL2MAN_RULE)
lr_anondump.1: lr_anondump
$(PERL2MAN_RULE)
lr_anonimize.1: lr_anonimize
$(PERL2MAN_RULE)
lr_deanonimize.1: lr_deanonimize
$(PERL2MAN_RULE)
lr_dlf_analyze.1: lr_dlf_analyze
$(PERL2MAN_RULE)
lr_dlf2xml.1: lr_dlf2xml
$(PERL2MAN_RULE)
lr_getaddresses.1: lr_getaddresses
$(PERL2MAN_RULE)
lr_prof_report.1: lr_prof_report
$(PERL2MAN_RULE)
lr_smtpfield.1: lr_smtpfield
$(PERL2MAN_RULE)
lr_xml2ascii.1: lr_xml2ascii
$(PERL2MAN_RULE)
lr_xml2png.1: lr_xml2png
$(PERL2MAN_RULE)
|