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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
# Copyright (C) 2002 Stanislav Sinyagin
#
# 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; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
# $Id: Makefile.am,v 1.10 2008/10/25 23:35:22 ssinyagin Exp $
# Stanislav Sinyagin <ssinyagin@yahoo.com>
#
SUBST = @abs_top_builddir@/setup_tools/substvars.sh
pkgbindir = @pkgbindir@
pkgbin_SCRIPTS = \
acledit \
action_notify \
action_printemail \
action_snmptrap \
action_snmpv1trap \
bdbinfo \
buildsearchdb \
cleanup \
clearcache \
collector \
compilexml \
configinfo \
configsnapshot \
devdiscover \
genddx \
genlist \
genreport \
install_plugin \
monitor \
rrddir2xml \
schedulerinfo \
srvderive \
ttproclist
wrapperdir = @wrapperdir@
wrapper_SCRIPTS = \
torrus
CLEANFILES = $(pkgbin_SCRIPTS) $(wrapper_SCRIPTS)
EXTRA_DIST = \
acledit.in \
action_notify.in \
action_printemail.in \
action_snmptrap.in \
action_snmpv1trap.in \
bdbinfo.in \
buildsearchdb.in \
clearcache.in \
cleanup.in \
collector.in \
compilexml.in \
configinfo.in \
configsnapshot.in \
devdiscover.in \
genddx.in \
genlist.in \
genreport.in \
install_plugin.in \
monitor.in \
rrddir2xml.in \
schedulerinfo.in \
srvderive.in \
torrus.in \
ttproclist.in
# Result of:
# ls -1 | egrep '^[a-z][^.]+$' | \
# awk '{printf "%s: %s.in\n\t$(SUBST) %s.in > %s\n\n", $1, $1, $1, $1}'
acledit: acledit.in
$(SUBST) acledit.in > acledit
action_printemail: action_printemail.in
$(SUBST) action_printemail.in > action_printemail
action_notify: action_notify.in
$(SUBST) action_notify.in > action_notify
action_snmptrap: action_snmptrap.in
$(SUBST) action_snmptrap.in > action_snmptrap
action_snmpv1trap: action_snmpv1trap.in
$(SUBST) action_snmpv1trap.in > action_snmpv1trap
buildsearchdb: buildsearchdb.in
$(SUBST) buildsearchdb.in > buildsearchdb
bdbinfo: bdbinfo.in
$(SUBST) bdbinfo.in > bdbinfo
cleanup: cleanup.in
$(SUBST) cleanup.in > cleanup
clearcache: clearcache.in
$(SUBST) clearcache.in > clearcache
collector: collector.in
$(SUBST) collector.in > collector
compilexml: compilexml.in
$(SUBST) compilexml.in > compilexml
configinfo: configinfo.in
$(SUBST) configinfo.in > configinfo
configsnapshot: configsnapshot.in
$(SUBST) configsnapshot.in > configsnapshot
devdiscover: devdiscover.in
$(SUBST) devdiscover.in > devdiscover
genddx: genddx.in
$(SUBST) genddx.in > genddx
genlist: genlist.in
$(SUBST) genlist.in > genlist
genreport: genreport.in
$(SUBST) genreport.in > genreport
install_plugin: install_plugin.in
$(SUBST) install_plugin.in > install_plugin
monitor: monitor.in
$(SUBST) monitor.in > monitor
rrddir2xml: rrddir2xml.in
$(SUBST) rrddir2xml.in > rrddir2xml
schedulerinfo: schedulerinfo.in
$(SUBST) schedulerinfo.in > schedulerinfo
srvderive: srvderive.in
$(SUBST) srvderive.in > srvderive
torrus: torrus.in
$(SUBST) torrus.in > torrus
ttproclist: ttproclist.in
$(SUBST) ttproclist.in > ttproclist
|