annotate libaudacious/Makefile @ 2087:bc47a2129067 trunk

[svn] - update these files
author nenolod
date Mon, 11 Dec 2006 04:30:50 -0800
parents b9c6f1305c99
children e0e50e151bab
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) \
1939
e090f66574f6 [svn] Compile errors are bad, hmmkay?
chainsaw
parents: 1936
diff changeset
13 $(GCONF_LIBS)
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
14
1625
79891e2fd8a5 [svn] - use $(SHARED_SUFFIX)
nenolod
parents: 1621
diff changeset
15 CFLAGS += $(PICFLAGS) \
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
16 $(GTK_CFLAGS) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
17 $(GCONF_CFLAGS) \
1953
e00f2d82233b [svn] - build fix
yaz
parents: 1939
diff changeset
18 -D_AUDACIOUS_CORE \
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
19 -I.. \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
20 -I../intl
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
21
727
c331d6c6880a [svn] - gconf
nenolod
parents: 726
diff changeset
22 CONF_SRC = configdb_$(CONFIGDB_BACKEND).c
2068
31b5c59ed31b [svn] - add VFSBuffer, equivilant to fmemopen().
nenolod
parents: 2047
diff changeset
23 VFS_SRC = vfs.c vfs_common.c vfs_buffer.c
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
24
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
25 SOURCES = \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
26 $(CONF_SRC) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
27 rcfile.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
28 $(VFS_SRC) \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
29 beepctrl.c \
2046
456c74b6880a [svn] - bleah, put dirbrowser back
nenolod
parents: 2044
diff changeset
30 dirbrowser.c \
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
31 util.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
32 formatter.c \
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
33 titlestring.c \
2071
b9c6f1305c99 [svn] - move urldecode to libaudacious
nenolod
parents: 2068
diff changeset
34 xconvert.c \
b9c6f1305c99 [svn] - move urldecode to libaudacious
nenolod
parents: 2068
diff changeset
35 urldecode.c
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
36
614
2eaaf9c7b6e5 [svn] Oops.
nenolod
parents: 583
diff changeset
37 OBJECTS = ${SOURCES:.c=.o}
2eaaf9c7b6e5 [svn] Oops.
nenolod
parents: 583
diff changeset
38
583
2abba1360af4 [svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff changeset
39 HEADERS = \
2068
31b5c59ed31b [svn] - add VFSBuffer, equivilant to fmemopen().
nenolod
parents: 2047
diff changeset
40 vfs.h vfs_buffer.h rcfile.h configdb.h \
2071
b9c6f1305c99 [svn] - move urldecode to libaudacious
nenolod
parents: 2068
diff changeset
41 beepctrl.h dirbrowser.h urldecode.h \
2047
545494a9c048 [svn] - remove xml_document.c
nenolod
parents: 2046
diff changeset
42 formatter.h titlestring.h xconvert.h
657
0fd4f4a28ce1 [svn] versioning for libaudacious.so
nenolod
parents: 615
diff changeset
43
1621
fae6e0cfcc77 [svn] - Reapply r2161
nhjm449
parents: 1617
diff changeset
44 include ../mk/objective.mk
fae6e0cfcc77 [svn] - Reapply r2161
nhjm449
parents: 1617
diff changeset
45
657
0fd4f4a28ce1 [svn] versioning for libaudacious.so
nenolod
parents: 615
diff changeset
46 install-posthook:
1873
68c0c8620b17 [svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents: 1872
diff changeset
47 @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
48 @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
49 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).4
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 \
1625
79891e2fd8a5 [svn] - use $(SHARED_SUFFIX)
nenolod
parents: 1621
diff changeset
51 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX)