Mercurial > audlegacy
annotate src/audacious/Makefile @ 2541:c399c0979e09 trunk
[svn] - put configdb back in libaudacious as the client library needs it
author | nenolod |
---|---|
date | Sat, 17 Feb 2007 02:32:37 -0800 |
parents | 719e0898ff3c |
children | c293ff5ec46f |
rev | line source |
---|---|
2409
30ab29ed32d8
[svn] - back out objective-make topdir probe stuff, it doesnt work on some
nenolod
parents:
2404
diff
changeset
|
1 include ../../mk/rules.mk |
30ab29ed32d8
[svn] - back out objective-make topdir probe stuff, it doesnt work on some
nenolod
parents:
2404
diff
changeset
|
2 include ../../mk/init.mk |
30ab29ed32d8
[svn] - back out objective-make topdir probe stuff, it doesnt work on some
nenolod
parents:
2404
diff
changeset
|
3 include ../../mk/objective.mk |
2313 | 4 |
5 SUBDIRS = widgets glade images ui | |
6 | |
7 OBJECTIVE_BINS = audacious | |
8 | |
9 LDFLAGS += $(AUDLDFLAGS) | |
10 | |
11 LDADD = \ | |
2441 | 12 -L.. $(LTLIBINTL) \ |
2313 | 13 -L../libaudacious -laudacious \ |
2538
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2537
diff
changeset
|
14 $(samplerate_LIBS) \ |
2313 | 15 $(CHARDET_LIBS) \ |
2441 | 16 $(GTK_LIBS) \ |
2313 | 17 $(LIBGLADE_LIBS) \ |
2441 | 18 $(REGEX_LIBS) \ |
2313 | 19 ./widgets/libwidgets.a |
20 | |
21 CFLAGS += \ | |
2441 | 22 $(GTK_CFLAGS) \ |
2313 | 23 $(LIBGLADE_CFLAGS) \ |
2441 | 24 $(BEEP_DEFINES) \ |
25 $(ARCH_DEFINES) \ | |
2538
719e0898ff3c
[svn] - Patch to use libsamplerate for high-quality interpolated upsampling,
nenolod
parents:
2537
diff
changeset
|
26 $(samplerate_CFLAGS) \ |
2441 | 27 $(REGEX_CFLAGS) \ |
2313 | 28 -D_AUDACIOUS_CORE \ |
2441 | 29 -I.. -I../.. \ |
2313 | 30 -I../intl |
31 | |
2367 | 32 HEADERS = \ |
2426 | 33 formatter.h \ |
2537 | 34 rcfile.h \ |
2387
af600aefd2cf
[svn] - add i18n.h which wraps gettext in a way that is usable to plugins.
nenolod
parents:
2386
diff
changeset
|
35 i18n.h \ |
2367 | 36 input.h \ |
2404 | 37 hook.h \ |
2386 | 38 main.h \ |
2367 | 39 output.h \ |
40 playlist.h \ | |
41 playlist_container.h \ | |
42 plugin.h \ | |
2385
ab2b1b6f6179
[svn] - add missing inclusion of strings.h where necessary, do not export main.h and export strings.h
giacomo
parents:
2367
diff
changeset
|
43 strings.h \ |
2441 | 44 titlestring.h \ |
2367 | 45 ui_fileinfopopup.h \ |
46 ui_preferences.h \ | |
47 util.h \ | |
48 vfs.h \ | |
2431
3ec22a11c83e
[svn] - moved titlestring.* and xconvert.* from libaudacious to audacious
mf0102
parents:
2426
diff
changeset
|
49 vfs_buffer.h \ |
3ec22a11c83e
[svn] - moved titlestring.* and xconvert.* from libaudacious to audacious
mf0102
parents:
2426
diff
changeset
|
50 xconvert.h |
2367 | 51 |
2313 | 52 SOURCES = \ |
53 build_stamp.c \ | |
2365 | 54 controlsocket.c \ |
55 dnd.c \ | |
56 dock.c \ | |
57 effect.c \ | |
58 fft.c \ | |
2426 | 59 formatter.c \ |
2365 | 60 general.c \ |
2313 | 61 genevent.c \ |
2365 | 62 glade.c \ |
63 hints.c \ | |
2404 | 64 hook.c \ |
2365 | 65 iir.c \ |
66 iir_cfs.c \ | |
67 iir_fpu.c \ | |
68 input.c \ | |
69 logger.c \ | |
70 main.c \ | |
71 memorypool.c \ | |
2313 | 72 output.c \ |
2365 | 73 pixbuf_effects.c \ |
74 playback.c \ | |
2313 | 75 playlist.c \ |
76 playlist_container.c \ | |
2365 | 77 pluginenum.c \ |
2537 | 78 rcfile.c \ |
2365 | 79 signals.c \ |
80 strings.c \ | |
2431
3ec22a11c83e
[svn] - moved titlestring.* and xconvert.* from libaudacious to audacious
mf0102
parents:
2426
diff
changeset
|
81 titlestring.c \ |
2365 | 82 ui_about.c \ |
2442
44df6c17411b
[svn] - split out albumart locating functions into a seperate file and make the public API available in util.h
nenolod
parents:
2441
diff
changeset
|
83 ui_albumart.c \ |
2365 | 84 ui_credits.c \ |
85 ui_equalizer.c \ | |
2313 | 86 ui_fileinfo.c \ |
2348
564e8a1fe09a
[svn] - made a public API for fileinfopopup (popup that displays metadata, the same used in playlist); now plugins can include ui_fileinfopopup.h to display metadata popups (i.e. statusicon and libnotify plugins)
giacomo
parents:
2341
diff
changeset
|
87 ui_fileinfopopup.c \ |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2411
diff
changeset
|
88 ui_fileopener.c \ |
2500 | 89 ui_jumptotrack.c \ |
2365 | 90 ui_main.c \ |
2313 | 91 ui_manager.c \ |
2365 | 92 ui_playlist.c \ |
2499
15a1f5ee4d1c
[svn] - playlist_manager -> ui_playlist_manager, since it's a UI component.
nenolod
parents:
2494
diff
changeset
|
93 ui_playlist_manager.c \ |
2365 | 94 ui_preferences.c \ |
2494
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2465
diff
changeset
|
95 ui_skinned_cursor.c \ |
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2465
diff
changeset
|
96 ui_skinned_window.c \ |
2365 | 97 ui_skinselector.c \ |
2422 | 98 ui_urlopener.c \ |
2416
0fd7f4f969ad
[svn] integrated urldecode.* from libaudacious into audacious directory, made separate ui_fileopener.*
mf0102
parents:
2411
diff
changeset
|
99 urldecode.c \ |
2365 | 100 util.c \ |
2494
59661bd074b4
[svn] Try to put some skinned window code in a common place.
nenolod
parents:
2465
diff
changeset
|
101 vfs.c \ |
2365 | 102 vfs_buffer.c \ |
103 vfs_buffered_file.c \ | |
104 vfs_common.c \ | |
2431
3ec22a11c83e
[svn] - moved titlestring.* and xconvert.* from libaudacious to audacious
mf0102
parents:
2426
diff
changeset
|
105 visualization.c \ |
3ec22a11c83e
[svn] - moved titlestring.* and xconvert.* from libaudacious to audacious
mf0102
parents:
2426
diff
changeset
|
106 xconvert.c |
2313 | 107 |
108 OBJECTS = ${SOURCES:.c=.o} | |
109 | |
110 desktop_DATA = audacious.desktop | |
111 desktopdir = $(datadir)/applications | |
112 | |
113 audacious: $(OBJECTS) widgets/libwidgets.a | |
114 $(CXX) $(LDFLAGS) $(OBJECTS) $(LDADD) -o $@ | |
115 @printf "%10s %-20s\n" LINK $@ | |
116 | |
117 OBJECTIVE_DATA = audacious.desktop:$(datadir)/applications |