annotate libaudacious/Makefile @ 1936:60934ccc817d trunk

[svn] - per bug #605, remove GNOME VFS.
author nenolod
date Sun, 05 Nov 2006 02:29:47 -0800
parents 68c0c8620b17
children e090f66574f6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
1 include ../mk/rules.mk
1621
fae6e0cfcc77 [svn] - Reapply r2161
nhjm449
parents: 1617
diff changeset
2 include ../mk/init.mk
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
3
1630
842667773cc0 [svn] - audacious now builds on OS X
nenolod
parents: 1628
diff changeset
4 PICLDFLAGS = $(LIBLDFLAGS)
842667773cc0 [svn] - audacious now builds on OS X
nenolod
parents: 1628
diff changeset
5
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
6 beepincludedir = $(includedir)/audacious
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
7
1625
79891e2fd8a5 [svn] - use $(SHARED_SUFFIX)
nenolod
parents: 1621
diff changeset
8 OBJECTIVE_LIBS = libaudacious$(SHARED_SUFFIX)
1873
68c0c8620b17 [svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents: 1872
diff changeset
9 OBJECTIVE_SONAME_SUFFIX = 4
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
10
730
1b3adae291b3 [svn] - fix gconf at no additional charge
nenolod
parents: 727
diff changeset
11 LIBADD = \
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
12 $(GTK_LIBS) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
13 $(GCONF_LIBS) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
14 $(GNOMEVFS_LIBS)
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
15
1625
79891e2fd8a5 [svn] - use $(SHARED_SUFFIX)
nenolod
parents: 1621
diff changeset
16 CFLAGS += $(PICFLAGS) \
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
17 $(GTK_CFLAGS) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
18 $(GCONF_CFLAGS) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
19 $(GNOMEVFS_CFLAGS) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
20 -I.. \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
21 -I../intl
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
22
727
c331d6c6880a [svn] - gconf
nenolod
parents: 726
diff changeset
23 CONF_SRC = configdb_$(CONFIGDB_BACKEND).c
1936
60934ccc817d [svn] - per bug #605, remove GNOME VFS.
nenolod
parents: 1873
diff changeset
24 VFS_SRC = vfs_stdio.c vfs_common.c
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
25
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
26 SOURCES = \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
27 $(CONF_SRC) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
28 rcfile.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
29 $(VFS_SRC) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
30 beepctrl.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
31 dirbrowser.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
32 util.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
33 formatter.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
34 titlestring.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
35 xentry.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
36 xconvert.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
37 xml_document.c
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
38
614
2eaaf9c7b6e5 [svn] Oops.
nenolod
parents: 583
diff changeset
39 OBJECTS = ${SOURCES:.c=.o}
2eaaf9c7b6e5 [svn] Oops.
nenolod
parents: 583
diff changeset
40
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
41 HEADERS = \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
42 vfs.h rcfile.h configdb.h \
1734
43c197f55dda [svn] - merge libaudacious (public) and audacious util APIs
nenolod
parents: 1630
diff changeset
43 beepctrl.h dirbrowser.h \
1739
5573c40b3fb2 [svn] - export xentry and xconvert API
nenolod
parents: 1734
diff changeset
44 formatter.h titlestring.h xentry.h xconvert.h xml_document.h
657
0fd4f4a28ce1 [svn] versioning for libaudacious.so
nenolod
parents: 615
diff changeset
45
1621
fae6e0cfcc77 [svn] - Reapply r2161
nhjm449
parents: 1617
diff changeset
46 include ../mk/objective.mk
fae6e0cfcc77 [svn] - Reapply r2161
nhjm449
parents: 1617
diff changeset
47
657
0fd4f4a28ce1 [svn] versioning for libaudacious.so
nenolod
parents: 615
diff changeset
48 install-posthook:
1873
68c0c8620b17 [svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents: 1872
diff changeset
49 @mv ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX) ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).4.0.0
68c0c8620b17 [svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents: 1872
diff changeset
50 @ln -sf ${LIBDIR}/libaudacious$(SHARED_SUFFIX).4.0.0 \
68c0c8620b17 [svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents: 1872
diff changeset
51 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).4
68c0c8620b17 [svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents: 1872
diff changeset
52 @ln -sf ${LIBDIR}/libaudacious$(SHARED_SUFFIX).4 \
1625
79891e2fd8a5 [svn] - use $(SHARED_SUFFIX)
nenolod
parents: 1621
diff changeset
53 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX)