aboutsummaryrefslogtreecommitdiff
path: root/etc/Makefile.am
blob: dfb87cca2789977a59f0c7d8f0f328901906c634 (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
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
# This file is part of Eclat
# Copyright (C) 2012-2015 Sergey Poznyakoff
#
# Eclat 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 3, or (at your option)
# any later version.
#
# Eclat 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 Eclat.  If not, see <http://www.gnu.org/licenses/>.

noinst_PROGRAMS = flncat

FLNFILES=\
 allocate-address.fln\
 attach-internet-gateway.fln\
 attach-volume.fln\
 associate-address.fln\
 copy-image.fln\
 copy-snapshot.fln\
 create-image.fln\
 create-internet-gateway.fln\
 create-security-group.fln\
 create-snapshot.fln\
 create-subnet.fln\
 create-tags.fln\
 create-volume.fln\
 create-vpc.fln\
 delete-internet-gateway.fln\
 delete-security-group.fln\
 delete-subnet.fln\
 delete-snapshot.fln\
 delete-tags.fln\
 delete-volume.fln\
 delete-vpc.fln\
 deregister-image.fln\
 describe-addresses.fln\
 describe-availability-zones.fln\
 describe-internet-gateway.fln\
 describe-image-attribute.fln\
 describe-images.fln\
 describe-instance-attribute.fln\
 describe-instance-status.fln\
 describe-instances.fln\
 describe-regions.fln\
 describe-security-groups.fln\
 describe-snapshot-attribute.fln\
 describe-snapshots.fln\
 describe-subnets.fln\
 describe-tags.fln\
 describe-volumes.fln\
 describe-vpc-attribute.fln\
 describe-vpcs.fln\
 detach-internet-gateway.fln\
 detach-volume.fln\
 disassociate-address.fln\
 get-console-output.fln\
 lsattr.fln\
 modify-image-attribute.fln\
 modify-instance-attribute.fln\
 modify-snapshot-attribute.fln\
 modify-subnet-attribute.fln\
 modify-vpc-attribute.fln\
 reboot-instances.fln\
 release-address.fln\
 reset-snapshot-attribute.fln\
 run-instances.fln\
 sg.fln\
 start-instances.fln\
 stop-instances.fln

EXTRA_DIST=$(FLNFILES) default.fln eclat.cfin

SUFFIXES=.cfin .conf

if SPLIT_FORMATS
SUFFIXES += .forlan .fln
.fln.forlan:
	$(AM_V_GEN)$(abs_builddir)/flncat $^ default.fln > $@
FORMATFILES = $(FLNFILES:.fln=.forlan)
FORMATNAME = $${command}
lsattr.forlan: describe-instance-attribute.fln describe-snapshot-attribute.fln
sg.forlan: sg.fln describe-security-groups.fln
else
FORMATFILES = eclat.forlan
eclat.forlan: $(FLNFILES) default.fln
	$(AM_V_GEN)(cd $(srcdir); $(abs_builddir)/flncat $(FLNFILES) default.fln) > eclat.forlan
FORMATNAME = eclat
endif

noinst_SCRIPTS=eclat.conf $(FORMATFILES)
CLEANFILES=eclat.conf $(FORMATFILES)

.cfin.conf:
	$(AM_V_GEN)sed 's^FORMATDIR^$(pkgdatadir)^;s^FORMATNAME^$(FORMATNAME)^' $< > $@

pkgdata_DATA = $(FORMATFILES)
dist_pkgdata_DATA = compl.sh

install-data-local:
	@test -z "$(DESTDIR)$(sysconfdir)" || $(mkdir_p) "$(DESTDIR)$(sysconfdir)"
	@if [ -r $(DESTDIR)$(sysconfdir)/eclat.conf ]; then :; \
	else ${INSTALL} -m 644 $(top_builddir)/etc/eclat.conf \
               $(DESTDIR)$(sysconfdir)/eclat.conf; \
        fi

Return to:

Send suggestions and report system problems to the System administrator.