annotate libguess/Makefile @ 1943:488e5560c8b4 trunk

[svn] - use g_strcasecmp instead of several g_strdowns to speed up jump-to-file performance. closes #56
author nenolod
date Sun, 05 Nov 2006 13:33:25 -0800
parents 1749ad179a1c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
79891e2fd8a5 [svn] - use $(SHARED_SUFFIX)
nenolod
parents: 1615
diff changeset
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)