Mercurial > audlegacy-plugins
annotate src/flac/libflac/Makefile @ 1162:29519d604e8c trunk
[svn] - revise bitrate calculation with xing header. if number of bytes and number of frames are available in xing header, fast play time calculation yields almost appropriate duration upon a vbr file.
- now fileinfo dialog shows duration in MM:SS format.
author | yaz |
---|---|
date | Mon, 04 Jun 2007 07:46:52 -0700 |
parents | f19e6748d8eb |
children |
rev | line source |
---|---|
715 | 1 include ../../../mk/rules.mk |
2 include ../../../mk/init.mk | |
3 | |
724
d91c6ab8e774
[svn] - libflac -> libaudflac to prevent collision in the sun studio linker
nenolod
parents:
723
diff
changeset
|
4 OBJECTIVE_LIBS_NOINST = libaudflac.a |
715 | 5 |
6 SOURCES = \ | |
7 bitmath.c \ | |
8 bitreader.c \ | |
9 bitwriter.c \ | |
10 cpu.c \ | |
11 crc.c \ | |
12 fixed.c \ | |
13 float.c \ | |
14 format.c \ | |
15 lpc.c \ | |
16 md5.c \ | |
17 memory.c \ | |
18 metadata_iterators.c \ | |
19 metadata_object.c \ | |
20 ogg_decoder_aspect.c \ | |
21 ogg_encoder_aspect.c \ | |
22 ogg_helper.c \ | |
23 ogg_mapping.c \ | |
24 stream_decoder.c \ | |
25 stream_encoder.c \ | |
26 stream_encoder_framing.c \ | |
27 window.c | |
28 | |
29 OBJECTS = ${SOURCES:.c=.o} | |
30 | |
726
d24c2d0fb60c
[svn] - depend on $(OGG_VORBIS_*) for debian's sake
nenolod
parents:
724
diff
changeset
|
31 CFLAGS += $(PICFLAGS) -I. -IFLAC $(OGG_VORBIS_CFLAGS) |
715 | 32 |
33 include ../../../mk/objective.mk |