summaryrefslogtreecommitdiffstats
path: root/udev/Makefile.am
blob: 2a7ad98ea41ccef79ba572451a3c6ee5a0c292ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if WITH_UDEV
edit = \
	$(SED) -r \
	-e 's|@udev_activation_rule[@]|$(udev_activation_rule)|g' \
	< $< > $@ || rm $@

udevrules_DATA = \
	39-libirecovery.rules

39-libirecovery.rules: 39-libirecovery.rules.in
	$(edit)

EXTRA_DIST = \
	39-libirecovery.rules.in

MAINTAINERCLEANFILES = \
	39-libirecovery.rules

CLEANFILES = \
	39-libirecovery.rules
endif