Mercurial > audlegacy
annotate libaudacious/Makefile @ 2001:97e5147a6812 trunk
[svn] - remove vfs_stdio.c
author | nenolod |
---|---|
date | Thu, 23 Nov 2006 20:21:49 -0800 |
parents | 976da06332df |
children | 7f397d6e0746 |
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 | 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 | 4 PICLDFLAGS = $(LIBLDFLAGS) |
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 | 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 | 11 LIBADD = \ |
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
12 $(GTK_LIBS) \ |
1939 | 13 $(GCONF_LIBS) |
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
14 |
1625 | 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 | 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 | 22 CONF_SRC = configdb_$(CONFIGDB_BACKEND).c |
2001 | 23 VFS_SRC = vfs.c vfs_common.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 \ |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
30 dirbrowser.c \ |
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 \ |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
34 xentry.c \ |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
35 xconvert.c \ |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
36 xml_document.c |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
37 |
614 | 38 OBJECTS = ${SOURCES:.c=.o} |
39 | |
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
40 HEADERS = \ |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
41 vfs.h rcfile.h configdb.h \ |
1734
43c197f55dda
[svn] - merge libaudacious (public) and audacious util APIs
nenolod
parents:
1630
diff
changeset
|
42 beepctrl.h dirbrowser.h \ |
1739 | 43 formatter.h titlestring.h xentry.h xconvert.h xml_document.h |
657 | 44 |
1621 | 45 include ../mk/objective.mk |
46 | |
657 | 47 install-posthook: |
1873
68c0c8620b17
[svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents:
1872
diff
changeset
|
48 @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
|
49 @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
|
50 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).4 |
68c0c8620b17
[svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents:
1872
diff
changeset
|
51 @ln -sf ${LIBDIR}/libaudacious$(SHARED_SUFFIX).4 \ |
1625 | 52 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX) |