blob: 4482c77a0a914103b32598703f09e86883a7e472 (
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
|
ACLOCAL_AMFLAGS = -I m4
DISTCHECK_CONFIGURE_FLAGS = \
udevdir=\$${libdir}/udev \
--with-systemdsystemunitdir=\$${libdir}/systemd/system \
--with-systemdsystemgeneratordir=\$${libdir}/systemd/system-generators
dist_sysctl_DATA = \
sysctl.d/60-gentoo.conf
dist_tmpfiles_DATA = \
tmpfiles.d/gentoo-run.conf
dist_systemdsystempreset_DATA = \
system-preset/99-default.preset
dist_systemdsystemgenerator_SCRIPTS = \
system-generators/gentoo-local-generator
udevrulesdir = $(udevdir)/rules.d
dist_udevrules_DATA = udev/40-gentoo.rules
DISTCLEANFILES = \
$(systemdsystemunit_DATA)
EXTRA_DIST = NEWS
NEWS: configure.ac Makefile.am
git for-each-ref refs/tags --sort '-*committerdate' \
--format '# %(tag) (%(*committerdate:short))%0a%(contents:body)' \
> NEWS
|