summaryrefslogtreecommitdiffstats
path: root/actions/services/Makefile.am
blob: 651a31eb5d3d99b9e134c391d45934a5cad0c39c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
servicesdir = $(ACTIONSDIR)/services
services_SCRIPTS = \
	__init__.py

__init__.py: __init__.py.in
	sed \
	-e 's,@PYTHON\@,$(PYTHON),g' \
	-e 's,@GETTEXT_PACKAGE\@,$(GETTEXT_PACKAGE),g' \
	-e 's,@LOCALEDIR\@,$(LOCALEDIR),g' \
	$< > $@
	chmod +x $@


EXTRA_DIST = __init__.py.in

CLEANFILES = $(services_SCRIPTS)