0
|
1 SUBDIRS = glade images
|
|
2
|
|
3 beepincludedir = $(includedir)/audacious
|
|
4
|
|
5 bin_PROGRAMS = audacious
|
|
6
|
|
7 audacious_LDFLAGS = -export-dynamic
|
|
8 audacious_LDADD = \
|
|
9 $(X_LIBS) $(X_PRE_LIBS) -lX11 $(X_EXTRA_LIBS) \
|
|
10 $(GTK_LIBS) \
|
|
11 $(LIBGLADE_LIBS) \
|
|
12 $(LTLIBINTL) \
|
|
13 $(top_builddir)/libaudacious/libaudacious.la
|
|
14
|
|
15 audacious_CFLAGS = \
|
|
16 $(X_CFLAGS) \
|
|
17 $(GTK_CFLAGS) \
|
|
18 $(LIBGLADE_CFLAGS) \
|
|
19 $(BEEP_DEFINES) \
|
|
20 $(ARCH_DEFINES) \
|
|
21 -I$(top_srcdir) \
|
|
22 -I$(top_srcdir)/intl
|
|
23
|
|
24 audacious_SOURCES = \
|
|
25 skin.c skin.h \
|
|
26 util.c util.h \
|
|
27 output.c output.h \
|
|
28 fft.c fft.h \
|
|
29 input.c input.h \
|
|
30 effect.c effect.h \
|
|
31 general.c general.h \
|
|
32 visualization.c visualization.h \
|
|
33 fullscreen.c fullscreen.h \
|
|
34 pluginenum.c pluginenum.h \
|
|
35 playlist.c playlist.h \
|
|
36 controlsocket.c controlsocket.h \
|
|
37 dock.c dock.h \
|
|
38 widget.c widget.h \
|
|
39 sbutton.c sbutton.h \
|
|
40 pbutton.c pbutton.h \
|
|
41 tbutton.c tbutton.h \
|
|
42 textbox.c textbox.h \
|
|
43 menurow.c menurow.h \
|
|
44 hslider.c hslider.h \
|
|
45 monostereo.c monostereo.h \
|
|
46 vis.c vis.h \
|
|
47 svis.c svis.h \
|
|
48 number.c number.h \
|
|
49 playback.c playback.h \
|
|
50 playstatus.c playstatus.h \
|
|
51 playlist_list.c playlist_list.h \
|
|
52 playlist_slider.c playlist_slider.h \
|
|
53 playlist_popup.c playlist_popup.h \
|
|
54 eq_graph.c eq_graph.h \
|
|
55 eq_slider.c eq_slider.h \
|
|
56 main.c main.h \
|
|
57 logger.c logger.h \
|
|
58 xml_document.c xml_document.h \
|
|
59 mainwin.c mainwin.h \
|
|
60 skinwin.c skinwin.h \
|
|
61 prefswin.c prefswin.h \
|
|
62 playlistwin.c playlistwin.h \
|
|
63 equalizer.c equalizer.h \
|
|
64 glade.c glade.h \
|
|
65 hints.c hints.h \
|
|
66 about.c about.h \
|
|
67 plugin.h \
|
|
68 softvolume.c softvolume.h \
|
|
69 getopt.c getopt1.c getopt.h \
|
|
70 urldecode.c urldecode.h \
|
|
71 dnd.h \
|
|
72 debug.h \
|
|
73 mkdtemp.c \
|
|
74 pixmaps.h \
|
|
75 iir.c iir.h \
|
|
76 na.xpm beep_logo.xpm
|
|
77
|
|
78 beepinclude_HEADERS = plugin.h fullscreen.h
|
|
79
|
|
80 desktop_DATA = audacious.desktop
|
|
81 desktopdir = $(datadir)/applications
|
|
82
|
|
83
|
|
84 BUILT_SOURCES = pixmaps.h
|
|
85
|
|
86 embedded_icons = \
|
|
87 info.png playlist.png play.png
|
|
88
|
|
89
|
|
90 EXTRA_DIST = \
|
|
91 $(embedded_icons) build.list
|
|
92
|
|
93 pixmaps.h: $(embedded_icons)
|
|
94 gdk-pixbuf-csource --stream --build-list `cat build.list` > pixmaps.h
|