Mercurial > audlegacy
annotate libaudacious/Makefile @ 1872:3a77efe38b8a trunk
[svn] - libaudacious SONAME becomes libaudacious.so.3
| author | nenolod |
|---|---|
| date | Sat, 14 Oct 2006 11:38:14 -0700 |
| parents | ef9a2f666404 |
| children | 68c0c8620b17 |
| 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) |
|
1872
3a77efe38b8a
[svn] - libaudacious SONAME becomes libaudacious.so.3
nenolod
parents:
1870
diff
changeset
|
9 OBJECTIVE_SONAME_SUFFIX = 3 |
|
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) \ |
|
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 | 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 | 23 CONF_SRC = configdb_$(CONFIGDB_BACKEND).c |
| 1617 | 24 VFS_SRC = vfs_$(VFS_BACKEND).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 | 39 OBJECTS = ${SOURCES:.c=.o} |
| 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 | 44 formatter.h titlestring.h xentry.h xconvert.h xml_document.h |
| 657 | 45 |
| 1621 | 46 include ../mk/objective.mk |
| 47 | |
| 657 | 48 install-posthook: |
| 1625 | 49 @mv ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX) ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).3.0.0 |
| 50 @ln -sf ${LIBDIR}/libaudacious$(SHARED_SUFFIX).3.0.0 \ | |
| 51 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).3 | |
| 52 @ln -sf ${LIBDIR}/libaudacious$(SHARED_SUFFIX).3 \ | |
| 53 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX) |
