File: Makefile.am

package info (click to toggle)
zapping 0.10~cvs6-9
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 10,956 kB
  • ctags: 13,278
  • sloc: ansic: 111,145; asm: 11,770; sh: 9,816; xml: 2,742; makefile: 1,255; perl: 488
file content (40 lines) | stat: -rw-r--r-- 830 bytes parent folder | download | duplicates (4)
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
## Process this file with automake to produce Makefile.in

plugindir = @PLUGIN_DEFAULT_DIR@

plugin_LTLIBRARIES = libsubtitle.zapping.la

AM_CFLAGS = \
	@PLUGIN_DEFAULT_FLAGS@ \
	-DZAPPING8

INCLUDES = \
	-I$(top_srcdir) \
	@COMMON_INCLUDES@

libsubtitle_zapping_la_SOURCES = \
	view.c view.h \
	main.c main.h \
	preferences.c preferences.h

libsubtitle_zapping_la_LDFLAGS = -module -avoid-version

libsubtitle_zapping_la_LIBADD = \
	$(top_builddir)/libvbi/libvbi.la \
	$(PTHREAD_LIB) \
	$(PNG_LIB) \
	$(PACKAGE_LIBS) \
	$(UNICODE_LIBS)

# Must prevent link conflict with libzvbi 0.2.
great_rename:
	for file in *.c *.h; do \
	  sed "s/vbi_/vbi3_/g;s/VBI_/VBI3_/g" <$$file >tmp; \
	  mv tmp $$file; \
	done

great_emaner:
	for file in *.c *.h; do \
	  sed "s/vbi3_/vbi_/g;s/VBI3_/VBI_/g" <$$file >tmp; \
	  mv tmp $$file; \
	done