2010-03-25 23:20:59 +00:00
|
|
|
# Network UPS Tools: conf
|
|
|
|
|
|
|
|
INSTALL_0600 = $(INSTALL) -m 0600
|
|
|
|
|
2015-04-30 13:53:36 +00:00
|
|
|
SECFILES = upsd.conf.sample upsd.users.sample
|
2010-03-25 23:20:59 +00:00
|
|
|
PUBFILES = nut.conf.sample ups.conf.sample
|
|
|
|
CGIPUB = hosts.conf.sample upsset.conf.sample upsstats.html.sample \
|
|
|
|
upsstats-single.html.sample
|
|
|
|
|
|
|
|
if WITH_CGI
|
|
|
|
CGI_INSTALL = $(CGIPUB)
|
|
|
|
else
|
|
|
|
CGI_INSTALL =
|
|
|
|
endif
|
|
|
|
|
|
|
|
dist_sysconf_DATA = $(SECFILES) $(PUBFILES) $(CGI_INSTALL)
|
2013-11-24 15:00:12 +00:00
|
|
|
nodist_sysconf_DATA = upssched.conf.sample upsmon.conf.sample
|
2022-06-29 10:37:36 +00:00
|
|
|
|
|
|
|
SPELLCHECK_SRC = $(dist_sysconf_DATA) \
|
|
|
|
upssched.conf.sample.in upsmon.conf.sample.in
|
|
|
|
|
|
|
|
# NOTE: Due to portability, we do not use a GNU percent-wildcard extension:
|
|
|
|
#%-spellchecked: % Makefile.am $(top_srcdir)/docs/Makefile.am $(abs_srcdir)/$(NUT_SPELL_DICT)
|
|
|
|
# $(MAKE) -s -f $(top_builddir)/docs/Makefile SPELLCHECK_SRC_ONE="$<" SPELLCHECK_DIR="$(srcdir)" $@
|
|
|
|
|
|
|
|
# NOTE: Portable suffix rules do not allow prerequisites, so we shim them here
|
|
|
|
# by a wildcard target in case the make implementation can put the two together.
|
|
|
|
*-spellchecked: Makefile.am $(top_srcdir)/docs/Makefile.am $(abs_srcdir)/$(NUT_SPELL_DICT)
|
|
|
|
|
|
|
|
.sample.sample-spellchecked:
|
|
|
|
$(MAKE) -s -f $(top_builddir)/docs/Makefile SPELLCHECK_SRC_ONE="$<" SPELLCHECK_DIR="$(srcdir)" $@
|
|
|
|
|
|
|
|
.in.in-spellchecked:
|
|
|
|
$(MAKE) -s -f $(top_builddir)/docs/Makefile SPELLCHECK_SRC_ONE="$<" SPELLCHECK_DIR="$(srcdir)" $@
|
|
|
|
|
|
|
|
spellcheck spellcheck-interactive spellcheck-sortdict:
|
|
|
|
$(MAKE) -f $(top_builddir)/docs/Makefile SPELLCHECK_SRC="$(SPELLCHECK_SRC)" SPELLCHECK_DIR="$(srcdir)" $@
|
|
|
|
|
|
|
|
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in .dirstamp
|
|
|
|
CLEANFILES = *.pdf *.html *-spellchecked
|