0
|
1 ACLOCAL_AMFLAGS = -I ../m4
|
|
2 AUTOMAKE_OPTIONS = foreign
|
|
3
|
|
4 beepincludedir = $(includedir)/audacious
|
|
5
|
|
6 lib_LTLIBRARIES = libaudacious.la
|
|
7
|
|
8 libaudacious_la_LDFLAGS = -export-dynamic -version-info $(LIBBEEP_MAJOR_VERSION):$(LIBBEEP_MINOR_VERSION):$(LIBBEEP_MICRO_VERSION)
|
|
9
|
|
10 libaudacious_la_LIBADD = \
|
|
11 $(GTK_LIBS) \
|
|
12 $(GCONF_LIBS) \
|
|
13 $(GNOMEVFS_LIBS)
|
|
14
|
|
15 INCLUDES = \
|
|
16 $(GTK_CFLAGS) \
|
|
17 $(GCONF_CFLAGS) \
|
|
18 $(GNOMEVFS_CFLAGS) \
|
|
19 -I$(top_srcdir) \
|
|
20 -I$(top_srcdir)/intl
|
|
21
|
|
22 if HAVE_GCONF
|
|
23 CONF_SRC = configdb_gconf.c
|
|
24 else
|
|
25 CONF_SRC = configdb_rcfile.c
|
|
26 endif
|
|
27
|
|
28 if HAVE_GNOME_VFS
|
|
29 VFS_SRC = vfs_gnome.c
|
|
30 else
|
|
31 VFS_SRC = vfs_stdio.c
|
|
32 endif
|
|
33
|
|
34 libaudacious_la_SOURCES = \
|
|
35 $(CONF_SRC) configdb.h \
|
|
36 rcfile.c rcfile.h \
|
|
37 $(VFS_SRC) vfs.h \
|
|
38 configfile.c \
|
|
39 beepctrl.c beepctrl.h \
|
|
40 dirbrowser.c dirbrowser.h \
|
|
41 util.c util.h \
|
|
42 formatter.c formatter.h \
|
|
43 titlestring.c titlestring.h \
|
|
44 xentry.c xentry.h \
|
|
45 xconvert.c xconvert.h
|
|
46
|
|
47 beepinclude_HEADERS = \
|
|
48 vfs.h rcfile.h configdb.h \
|
|
49 configfile.h \
|
|
50 beepctrl.h dirbrowser.h util.h \
|
|
51 formatter.h titlestring.h
|