Mercurial > audlegacy
annotate libaudacious/Makefile @ 2307:d4c2cbfce304 trunk
[svn] - i see no reason to keep the BMP changelogs
| author | nenolod |
|---|---|
| date | Wed, 10 Jan 2007 04:54:30 -0800 |
| parents | a7ab1616ae38 |
| children |
| 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 |
|
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
23 |
|
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
24 SOURCES = \ |
|
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
25 $(CONF_SRC) \ |
|
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
26 rcfile.c \ |
|
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
27 beepctrl.c \ |
| 2046 | 28 dirbrowser.c \ |
|
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
29 util.c \ |
|
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
30 formatter.c \ |
|
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
31 titlestring.c \ |
| 2071 | 32 xconvert.c \ |
| 33 urldecode.c | |
|
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
34 |
| 614 | 35 OBJECTS = ${SOURCES:.c=.o} |
| 36 | |
|
583
2abba1360af4
[svn] libaudacious has two objectives that are evaluated, a static object and
nenolod
parents:
diff
changeset
|
37 HEADERS = \ |
| 2182 | 38 rcfile.h configdb.h \ |
| 2071 | 39 beepctrl.h dirbrowser.h urldecode.h \ |
| 2047 | 40 formatter.h titlestring.h xconvert.h |
| 657 | 41 |
| 1621 | 42 include ../mk/objective.mk |
| 43 | |
| 657 | 44 install-posthook: |
|
1873
68c0c8620b17
[svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents:
1872
diff
changeset
|
45 @mv ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX) ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).4.0.0 |
|
2207
a7ab1616ae38
[svn] - use relative links for this (FHS compliance)
nenolod
parents:
2182
diff
changeset
|
46 @ln -sf libaudacious$(SHARED_SUFFIX).4.0.0 \ |
|
1873
68c0c8620b17
[svn] - libaudacious.so.4 actually, due to remote-access API addition
nenolod
parents:
1872
diff
changeset
|
47 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX).4 |
|
2207
a7ab1616ae38
[svn] - use relative links for this (FHS compliance)
nenolod
parents:
2182
diff
changeset
|
48 @ln -sf libaudacious$(SHARED_SUFFIX).4 \ |
| 1625 | 49 ${DESTDIR}/${LIBDIR}/libaudacious$(SHARED_SUFFIX) |
