File: Makefile.am

package info (click to toggle)
jhbuild 3.38.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,640 kB
  • sloc: python: 11,621; sh: 4,548; makefile: 204; ansic: 19; sed: 16
file content (26 lines) | stat: -rw-r--r-- 571 bytes parent folder | download | duplicates (3)
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
EXTRA_DIST = hg-update.py jhbuild.in

bin_SCRIPTS = jhbuild
CLEANFILES = jhbuild

pkgdata_SCRIPTS = hg-update.py

jhbuild: jhbuild.in
	sed						\
		-e s!\@srcdir\@!$(abs_top_srcdir)!	\
		-e s!\@prefix\@!$(prefix)!		\
		-e s!\@datadir\@!$(datadir)!		\
		-e s!\@pkgdatadir\@!$(pkgdatadir)!	\
		-e s!\@libexecdir\@!$(libexecdir)!	\
		-e s!\@libdir\@!$(libdir)!		\
		-e s!\@pythondir\@!$(pythondir)!	\
		-e s!\@python\@!$(PYTHON_BASENAME)!	\
		-e s!\@PACKAGE\@!$(PACKAGE)!		\
		-e s!\@VERSION\@!$(VERSION)!		\
		< $< > $@
	chmod +x $@

jhbuild: Makefile

all-local: jhbuild