Mercurial > audlegacy
annotate libaudacious/Makefile @ 2047:545494a9c048 trunk
[svn] - remove xml_document.c
author | nenolod |
---|---|
date | Mon, 04 Dec 2006 01:44:20 -0800 |
parents | 456c74b6880a |
children | 31b5c59ed31b |
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 \ |
2046 | 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 \ |
2047 | 34 xconvert.c |
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
35 |
614 | 36 OBJECTS = ${SOURCES:.c=.o} |
37 | |
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
38 HEADERS = \ |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
39 vfs.h rcfile.h configdb.h \ |
2046 | 40 beepctrl.h dirbrowser.h \ |
2047 | 41 formatter.h titlestring.h xconvert.h |
657 | 42 |
1621 | 43 include ../mk/objective.mk |
44 | |
657 | 45 install-posthook: |
1873
68c0c8620b17
[svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents:
1872
diff
changeset
|
46 @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
|
47 @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
|
48 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).4 |
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 \ |
1625 | 50 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX) |