Mercurial > audlegacy
annotate libaudacious/Makefile.in @ 1601:54a210b20190 trunk
[svn] - clean up nhjm449's fix to eliminate warnings. thanks nhjm449!
author | yaz |
---|---|
date | Sat, 26 Aug 2006 23:16:53 -0700 |
parents | e0438384ce0a |
children | e402e0217870 |
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 |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
2 include ../mk/objective.mk |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
3 |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
4 beepincludedir = $(includedir)/audacious |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
5 |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
6 OBJECTIVE_LIBS = libaudacious.so |
1256 | 7 OBJECTIVE_SONAME_SUFFIX = 3.0.0 |
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
8 |
803
93c749c9e794
[svn] Don't override input LD_FLAGS - needed to enable profiling.
nemo
parents:
730
diff
changeset
|
9 LDFLAGS += -Wl,-export-dynamic |
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 |
615 | 16 CFLAGS += -fPIC -DPIC \ |
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 |
726 | 24 VFS_SRC = vfs_$(VFS_BACKEND).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 \ |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
43 beepctrl.h dirbrowser.h util.h \ |
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
44 formatter.h titlestring.h xml_document.h |
657 | 45 |
46 install-posthook: | |
1256 | 47 @mv ${DESTDIR}/${LIBDIR}/libaudacious.so ${DESTDIR}/${LIBDIR}/libaudacious.so.3.0.0 |
48 @ln -sf ${LIBDIR}/libaudacious.so.3.0.0 \ | |
49 ${DESTDIR}/${LIBDIR}/libaudacious.so.3 | |
50 @ln -sf ${LIBDIR}/libaudacious.so.3 \ | |
702 | 51 ${DESTDIR}/${LIBDIR}/libaudacious.so |