summaryrefslogtreecommitdiff
path: root/components/music/Makefile.am
blob: 292c5d815ddf3a41598f03972f46973768094479 (plain)
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
74
75
76
77
78
79
80
81
82
83
NULL =

if X86_OPTIMIZED
decode_source = decode_i386.c
dct64_source  = dct64_i386.c
else
decode_source = decode.c
dct64_source = dct64.c
endif

platform_source = decode.c dct64.c decode_i386.c dct64_i386.c

INCLUDES =					\
	-DPREFIX=\"$(prefix)\"			\
	-DG_LOG_DOMAIN=\"Nautilus-Music\"	\
	-I$(top_srcdir)				\
	-I$(top_builddir)			\
	$(GCONF_CFLAGS) 			\
	-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
	$(GNOMEUI_CFLAGS)                       \
	$(OAF_CFLAGS)				\
	$(BONOBO_CFLAGS)			\
	$(VFS_CFLAGS)

bin_PROGRAMS =					\
	nautilus-music-view

nautilus_music_view_SOURCES =		        \
	esd-audio.h				\
	getbits.h				\
	huffman.h				\
	mp3head.c				\
	mp3head.h				\
	nautilus-music-view.c			\
	nautilus-music-view.h			\
	main.c					\
	tabinit.c				\
	decode_2to1.c				\
	decode_4to1.c  				\
	decode_ntom.c  				\
	dxhead.c  				\
	dxhead.h  				\
	mpg123.c				\
	mpg123.h				\
	common.c				\
	layer1.c				\
	layer2.c				\
	layer3.c				\
	l2tables.h				\
	id3.c		   			\
	id3.h					\
	id3_header.h				\
	id3_frame.c	   			\
	id3_frame_content.c  			\
	id3_frame_text.c			\
	id3_frame_url.c	   			\
	id3_tag.c				\
	esd-audio.c				\
	esd-mixer.c				\
	pixmaps.h				\
	$(dct64_source)	 	  		\
	$(decode_source)

nautilus_music_view_LDADD =			\
	$(top_builddir)/libnautilus/libnautilus.la	\
	$(top_builddir)/libnautilus-extensions/libnautilus-extensions.la	\
	$(BONOBO_LIBS)					\
	$(GNOMEUI_LIBS)					\
	$(GCONF_LIBS) \
	$(VFS_LIBS)					\
	$(GNORBA_LIBS)

oafdir = $(datadir)/oaf

oaf_in_files =					\
	Nautilus_View_music.oaf.in		\
	$(NULL)

oaf_DATA = $(oaf_in_files:.oaf.in=.oaf)

@XML_I18N_MERGE_OAF_RULE@

EXTRA_DIST=$(oaf_DATA) $(oaf_in_files) $(platform_source)