Mercurial > audlegacy
annotate libguess/Makefile @ 2137:6bfa0777a57a trunk
[svn] Fixed a bug where xmms_remote_jump_to_time was called with seconds instead of milliseconds.
author | jerome |
---|---|
date | Sat, 16 Dec 2006 02:20:15 -0800 |
parents | 1749ad179a1c |
children |
rev | line source |
---|---|
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
1 include ../mk/rules.mk |
1615
e402e0217870
[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents:
1317
diff
changeset
|
2 include ../mk/init.mk |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
3 |
1317
a698348c5155
[svn] - libaac: potential buffer overflow vulnerability fix
nenolod
parents:
1105
diff
changeset
|
4 OBJECTIVE_LIBS_NOINST = libguess.a |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
5 OBJECTIVE_SONAME_SUFFIX = 0.2.0 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
6 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
7 LDFLAGS += -Wl,-export-dynamic |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
8 |
1625 | 9 CFLAGS += $(PICFLAGS) |
1105
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
10 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
11 SOURCES = \ |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
12 guess.c |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
13 |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
14 OBJECTS = ${SOURCES:.c=.o} |
4be4d74db123
[svn] automatic character encoding detector for id3 metadata. --enable-chardet enables this feature.
yaz
parents:
diff
changeset
|
15 |
1615
e402e0217870
[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents:
1317
diff
changeset
|
16 include ../mk/objective.mk |
e402e0217870
[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents:
1317
diff
changeset
|
17 |
1317
a698348c5155
[svn] - libaac: potential buffer overflow vulnerability fix
nenolod
parents:
1105
diff
changeset
|
18 libguess.a: $(OBJECTS) |
a698348c5155
[svn] - libaac: potential buffer overflow vulnerability fix
nenolod
parents:
1105
diff
changeset
|
19 $(AR) cq $@ $(OBJECTS) |