Mercurial > audlegacy
annotate audacious/Makefile.am @ 410:548073bede0b trunk
[svn] Experimental fix for the 56 warnings emitted by GCC4 when it encounters PsxBios.c; by an anonymous contributor. Stability to be assessed in the coming weeks.
author | chainsaw |
---|---|
date | Sun, 08 Jan 2006 16:49:05 -0800 |
parents | 5c457dac866a |
children | 31671500b357 |
rev | line source |
---|---|
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) \ | |
283 | 13 $(top_builddir)/libaudacious/libaudacious.la \ |
14 $(top_builddir)/libaudcore/libaudcore.la | |
0 | 15 |
16 audacious_CFLAGS = \ | |
17 $(X_CFLAGS) \ | |
18 $(GTK_CFLAGS) \ | |
19 $(LIBGLADE_CFLAGS) \ | |
20 $(BEEP_DEFINES) \ | |
21 $(ARCH_DEFINES) \ | |
22 -I$(top_srcdir) \ | |
23 -I$(top_srcdir)/intl | |
24 | |
25 audacious_SOURCES = \ | |
197
ccd034857702
[svn] Split up generic events into audcore_generic_events(), and client-specific stuff remains in mainwin_idle_func().
nenolod
parents:
0
diff
changeset
|
26 genevent.c genevent.h \ |
0 | 27 skin.c skin.h \ |
28 util.c util.h \ | |
29 output.c output.h \ | |
30 fft.c fft.h \ | |
31 input.c input.h \ | |
32 effect.c effect.h \ | |
33 general.c general.h \ | |
34 visualization.c visualization.h \ | |
35 fullscreen.c fullscreen.h \ | |
36 pluginenum.c pluginenum.h \ | |
37 playlist.c playlist.h \ | |
38 controlsocket.c controlsocket.h \ | |
39 dock.c dock.h \ | |
40 widget.c widget.h \ | |
41 sbutton.c sbutton.h \ | |
42 pbutton.c pbutton.h \ | |
43 tbutton.c tbutton.h \ | |
44 textbox.c textbox.h \ | |
45 menurow.c menurow.h \ | |
46 hslider.c hslider.h \ | |
47 monostereo.c monostereo.h \ | |
48 vis.c vis.h \ | |
49 svis.c svis.h \ | |
50 number.c number.h \ | |
51 playstatus.c playstatus.h \ | |
52 playlist_list.c playlist_list.h \ | |
53 playlist_slider.c playlist_slider.h \ | |
54 playlist_popup.c playlist_popup.h \ | |
55 eq_graph.c eq_graph.h \ | |
56 eq_slider.c eq_slider.h \ | |
57 main.c main.h \ | |
58 logger.c logger.h \ | |
59 xml_document.c xml_document.h \ | |
60 mainwin.c mainwin.h \ | |
61 skinwin.c skinwin.h \ | |
62 prefswin.c prefswin.h \ | |
383 | 63 ui_playlist.c ui_playlist.h \ |
0 | 64 equalizer.c equalizer.h \ |
65 glade.c glade.h \ | |
66 hints.c hints.h \ | |
67 about.c about.h \ | |
68 plugin.h \ | |
69 softvolume.c softvolume.h \ | |
70 getopt.c getopt1.c getopt.h \ | |
71 urldecode.c urldecode.h \ | |
72 dnd.h \ | |
73 debug.h \ | |
74 mkdtemp.c \ | |
75 pixmaps.h \ | |
76 iir.c iir.h \ | |
77 na.xpm beep_logo.xpm | |
78 | |
79 beepinclude_HEADERS = plugin.h fullscreen.h | |
80 | |
81 desktop_DATA = audacious.desktop | |
82 desktopdir = $(datadir)/applications | |
83 | |
84 | |
85 BUILT_SOURCES = pixmaps.h | |
86 | |
87 embedded_icons = \ | |
88 info.png playlist.png play.png | |
89 | |
90 | |
91 EXTRA_DIST = \ | |
92 $(embedded_icons) build.list | |
93 | |
94 pixmaps.h: $(embedded_icons) | |
95 gdk-pixbuf-csource --stream --build-list `cat build.list` > pixmaps.h |