File: Makefile.am

package info (click to toggle)
telepathy-glib 0.24.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,756 kB
  • sloc: ansic: 124,638; xml: 34,410; sh: 4,531; python: 3,528; makefile: 1,722; javascript: 211; cpp: 16
file content (32 lines) | stat: -rw-r--r-- 802 bytes parent folder | download | duplicates (7)
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
EXTRA_DIST = \
  contact-list.py \
  dialler.py \
  ensure-channel.py \
  inspect-cm.py \
  text-handler.py \
  file-transfer.py \
  ft-handler.py \
  stream-tube-offerer.py \
  stream-tube-accepter.py

installable_scripts = \
    telepathy-example-python-dialler \
    telepathy-example-python-contact-list \
    telepathy-example-python-ensure-channel \
    telepathy-example-python-file-transfer \
    telepathy-example-python-ft-handler \
    telepathy-example-python-inspect-cm \
    telepathy-example-python-text-handler \
    telepathy-example-python-stream-tube-accepter \
    telepathy-example-python-stream-tube-offerer \
    $(NULL)

telepathy-example-python-%: %.py
	cp $< $@
	chmod +x $@

if INSTALL_EXAMPLES
bin_SCRIPTS = $(installable_scripts)
endif

CLEANFILES = $(installable_scripts)