2019-11-03 21:51:06 +05:30
|
|
|
# Copyright (c) 2018-2019 Joachim Nilsson <troglobit@gmail.com>
|
2019-12-07 15:27:12 +05:30
|
|
|
# All rights reserved.
|
2018-08-03 01:53:26 +05:30
|
|
|
#
|
2019-12-07 15:27:12 +05:30
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# 3. Neither the name of the University nor the names of its contributors
|
|
|
|
# may be used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
2018-08-03 01:53:26 +05:30
|
|
|
#
|
2019-12-07 15:27:12 +05:30
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
2018-08-03 01:53:26 +05:30
|
|
|
|
2019-11-05 12:43:55 +05:30
|
|
|
SUBDIRS = example man src test
|
2019-12-07 15:34:00 +05:30
|
|
|
doc_DATA = README.md LICENSE ChangeLog.md syslog.conf
|
|
|
|
EXTRA_DIST = README.md LICENSE ChangeLog.md syslog.conf
|
2018-08-03 01:53:26 +05:30
|
|
|
|
2019-11-13 14:48:10 +05:30
|
|
|
if HAVE_SYSTEMD
|
|
|
|
systemd_DATA = syslogd.service
|
|
|
|
endif
|
|
|
|
|
2018-08-03 01:53:26 +05:30
|
|
|
#
|
|
|
|
# Target to run when building a release
|
|
|
|
#
|
|
|
|
release: distcheck
|
|
|
|
@for file in $(DIST_ARCHIVES); do \
|
|
|
|
md5sum $$file > ../$$file.md5; \
|
|
|
|
done
|
|
|
|
@mv $(DIST_ARCHIVES) ../
|
|
|
|
@echo
|
|
|
|
@echo "Resulting release files:"
|
|
|
|
@echo "================================================================="
|
|
|
|
@for file in $(DIST_ARCHIVES); do \
|
|
|
|
printf "$$file \tDistribution tarball\n"; \
|
|
|
|
printf "$$file.md5\t"; cat ../$$file.md5 | cut -f1 -d' '; \
|
|
|
|
done
|
2019-11-15 15:37:46 +05:30
|
|
|
|
|
|
|
# Workaround for systemd unit file duing distcheck
|
2019-12-08 04:36:12 +05:30
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --with-systemd=$$dc_install_base/$(systemd)
|
2020-01-20 01:49:19 +05:30
|
|
|
DISTCLEANFILES = lib/.libs/*
|