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 (21 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
NULL =
CLEANFILES =

noinst_SCRIPTS = test_hook.py \
                 test_info.py \
                 test_install.py \
                 $(NULL) 
CLEANFILES += $(noinst_SCRIPTS)

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

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

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

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