File: Makefile.am

package info (click to toggle)
gnome-specimen 0.4-8
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 1,064 kB
  • ctags: 82
  • sloc: sh: 3,510; python: 569; makefile: 135
file content (53 lines) | stat: -rw-r--r-- 692 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

SUBDIRS = data po specimen

.PHONY: force-run

force-run:

EXTRA_DIST = autogen.sh
DISTCLEANFILES =


#
# ChangeLog from bzr
#

EXTRA_DIST += ChangeLog

dist-hook:
	bzr log --short > ChangeLog.new
	mv -f ChangeLog.new $(distdir)/ChangeLog

#
# Executable to be installed
#
bin_SCRIPTS = gnome-specimen

gnome-specimen: gnome-specimen.in Makefile
	sed \
		-e s!\@pyexecdir\@!@pyexecdir@! \
		-e s!\@PYTHON\@!@PYTHON@! \
		< $< \
		> $@
	chmod a+x $@

EXTRA_DIST += gnome-specimen.in

CLEANFILES= gnome-specimen


#
# i18n build foo
#

EXTRA_DIST += \
	intltool-extract.in \
	intltool-merge.in \
	intltool-update.in

DISTCLEANFILES += \
	intltool-extract \
	intltool-merge \
	intltool-update