File: Makefile.am

package info (click to toggle)
click 0.5.2-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,372 kB
  • sloc: python: 7,135; ansic: 857; makefile: 441; sh: 236; perl: 26; xml: 11
file content (13 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
SUBDIRS = tests

noinst_SCRIPTS = paths.py
CLEANFILES = $(noinst_SCRIPTS)

do_subst = sed \
	-e 's,[@]sysconfdir[@],$(sysconfdir),g' \
	-e 's,[@]pkgdatadir[@],$(pkgdatadir),g' \
	-e 's,[@]pkglibdir[@],$(pkglibdir),g' \
	-e 's,[@]DEFAULT_ROOT[@],$(DEFAULT_ROOT),g'

paths.py: paths.py.in Makefile
	$(do_subst) < $(srcdir)/paths.py.in > $@