File: Makefile.am

package info (click to toggle)
gxine 0.5.903-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 6,140 kB
  • ctags: 3,166
  • sloc: ansic: 23,655; sh: 9,970; makefile: 478; xml: 206; cs: 121
file content (73 lines) | stat: -rw-r--r-- 2,296 bytes parent folder | download
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
SUBDIRS = m4 pixmaps include src doc browser-plugin misc po

#DEB_FILES = debian/rules debian/changelog debian/control debian/copyright debian/README.Debian debian/menu
EXTRA_DIST = config.rpath gxine.desktop.in mime.default autogen.sh gxine-test \
	BUGS README.de README.cs README_l10n

Applicationsdir = $(datadir)/applications
nodist_Applications_DATA = gxine.desktop

BUILT_SOURCES = gxine.desktop
CLEANFILES = $(BUILT_SOURCES)

debug:
	@list='$(SUBDIRS)'; for subdir in $$list; do \
	  (cd $$subdir && \
	   $(MAKE) $@ CFLAGS="$(DEBUG_CFLAGS)" LDFLAGS="$(DEBUG_LDFLAGS)") \
	  || exit; \
	done;
	$(MAKE) all-am CFLAGS="$(DEBUG_CFLAGS)" LDFLAGS="$(DEBUG_LDFLAGS)"

install-debug: debug
	@list='$(SUBDIRS)'; for subdir in $$list; do \
	  (cd $$subdir && \
	   $(MAKE) $@ CFLAGS="$(DEBUG_CFLAGS)" LDFLAGS="$(DEBUG_LDFLAGS)") \
	  || exit; \
	done;
	$(MAKE) install-am CFLAGS="$(DEBUG_CFLAGS)" LDFLAGS="$(DEBUG_LDFLAGS)"

prune-cache:
	-rm -f config.cache

mostlyclean-generic:
	-rm -f *~ \#* .*~ .\#* 
	-rm -f $(PACKAGE)-$(VERSION).tar.bz2
	-rm -f $(distdir).tar.gz $(PACKAGE).tgz package_descriptions
	-rm -rf $(distdir)

maintainer-clean-generic:
	-@echo "This command is intended for maintainers to use;"
	-@echo "it deletes files that may require special tools to rebuild."
	-rm -f Makefile.in configure acinclude.m4 aclocal.m4
	-rm -f ltconfig ltmain.sh
	-rm -f config.guess config.sub install-sh missing mkinstalldirs
	-rm -f libtool-nofpic depcomp compile config.log

maintainer-clean-generic-hook: 
	rm -f config.status

dist: dist-pre dist-bzip2
	:

dist-pre:
	$(MAKE) -C $(top_builddir)/src mktrans
	$(MAKE) -C $(top_builddir)/misc xmltrans

translator: dist-pre
	$(MAKE) -C $(top_builddir)/po update-po
	$(MAKE) -C $(top_builddir)/misc/po update-po

if XINE_LIST
gxine.desktop: gxine.desktop.in @XINE_LIST@
	exec > $@; cat $<; @XINE_LIST@; echo
else
XINE_MIME = $(if $(shell test "$(XINE_CONFIG)" = '' && echo y),$(shell pkg-config --variable=plugindir libxine),$(shell $(XINE_CONFIG) --plugindir))/mime.types
MIME = $(if $(shell test -f $(XINE_MIME) && echo y),$(XINE_MIME),$(srcdir)/mime.default)
gxine.desktop: gxine.desktop.in $(MIME)
	exec > $@; \
	cat $<; \
	awk 'BEGIN { s = "%s;" } { printf s, $$1; s = "%s;" }' <$(MIME); \
	echo
endif

ACLOCAL_AMFLAGS = -I m4 -I m4/gettext