X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=example%2FMakefile.am;h=f2f3052c1681cc9b5937d88373a5159e72d26252;hb=HEAD;hp=824aead04655caa0ad704e9ab8383fcdd563761e;hpb=94a044f90357edefa6f4ae9f0b1d5885b0e34aee;p=debian%2Famanda diff --git a/example/Makefile.am b/example/Makefile.am index 824aead..f2f3052 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -1,43 +1,68 @@ # Makefile for sample configuration files +include $(top_srcdir)/config/automake/vars.am include $(top_srcdir)/config/automake/installperms.am -amanda_dir = $(localstatedir)/lib/amanda +amanda_dir = $(amdatadir) templatedir = $(amanda_dir)/template.d -exampledir = $(amanda_dir)/example +server_exampledir = $(amanda_dir)/example +client_exampledir = $(amanda_dir)/example lbltempldir = $(amanda_dir)/example/label-templates -EXTRA_DIST = chg-multi.conf \ - chg-scsi.conf \ - config.site \ - disklist \ - chg-mcutil.conf - -dist_template_DATA = template.d/advanced.conf \ - template.d/amanda-harddisk.conf \ - template.d/amanda-single-tape.conf \ - template.d/amanda-tape-changer.conf \ - template.d/amanda-S3.conf \ +template_in_FILE = \ + template.d/advanced.conf.in \ + template.d/amanda-harddisk.conf.in \ + template.d/amanda-single-tape.conf.in \ + template.d/amanda-tape-changer.conf.in \ + template.d/amanda-S3.conf.in +template_FILE = \ template.d/dumptypes \ template.d/tapetypes \ template.d/README \ template.d/chg-manual.conf +template_generated_FILE = $(template_in_FILE:%.in=%) +template_DATA = $(template_FILE) $(template_generated_FILE) +EXTRA_DIST += $(template_FILE) $(template_in_FILE) +DISTCLEANFILES += $(template_generated_FILE) + + +server_example_in_FILE = \ + amanda.conf.in \ + inetd.conf.amandaserver.in \ + xinetd.amandaserver.in +server_example_FILE = \ + chg-multi.conf \ + chg-scsi.conf \ + disklist +server_example_generated_FILE = $(server_example_in_FILE:%.in=%) +server_example_DATA = $(server_example_FILE) $(server_example_generated_FILE) +EXTRA_DIST += $(server_example_FILE) $(server_example_in_FILE) +DISTCLEANFILES += $(server_example_generated_FILE) + +client_example_in_FILE = \ + amanda-client.conf.in \ + amanda-client-postgresql.conf.in \ + inetd.conf.amandaclient.in \ + xinetd.amandaclient.in +client_example_FILE = +client_example_generated_FILE = $(client_example_in_FILE:%.in=%) +client_example_DATA = $(client_example_FILE) $(client_example_generated_FILE) +EXTRA_DIST += $(client_example_FILE) $(client_example_in_FILE) +DISTCLEANFILES += $(client_example_generated_FILE) -dist_example_DATA = amanda.conf \ - amanda-client.conf \ - inetd.conf.amandaclient \ - xinetd.amandaclient \ - xinetd.amandaserver -dist_lbltempl_DATA = DLT.ps \ +lbltempl_DATA = DLT.ps \ EXB-8500.ps \ HP-DAT.ps \ 8.5x11.ps \ 3hole.ps \ DLT-A4.ps \ DIN-A4.ps +EXTRA_DIST += $(lbltempl_DATA) + +# build foo from foo.in where necessary +%: %.in $(top_builddir)/config.status + $(top_builddir)/config.status --file=$@:$< -INSTALLPERMS_data = chown=amanda \ - dest=$(templatedir) $(dist_template_DATA) \ - dest=$(exampledir) $(dist_example_DATA) \ - dest=$(libtempldir) $(dist_libtempl_DATA) +# config.status leaves config.log files around +CLEANFILES += config.log