comparison libfaad2/Makefile @ 15596:667c78f0fc60

- correct the argument in configure check for lrintf() to avoid a warning - add -D_GNU_SOURCE where lrintf() is used, for the cases when -std=gnu99 isn't available
author henry
date Mon, 30 May 2005 08:57:30 +0000
parents fbf889ed2426
children fa2281c94e7e
comparison
equal deleted inserted replaced
15595:b4c3f02811dd 15596:667c78f0fc60
4 include ../config.mak 4 include ../config.mak
5 5
6 SRCS = bits.c cfft.c common.c decoder.c drc.c error.c filtbank.c hcr.c huffman.c ic_predict.c is.c lt_predict.c mdct.c mp4.c ms.c output.c pns.c ps_dec.c ps_syntax.c pulse.c rvlc.c sbr_dct.c sbr_dec.c sbr_e_nf.c sbr_fbt.c sbr_hfadj.c sbr_hfgen.c sbr_huff.c sbr_qmf.c sbr_syntax.c sbr_tf_grid.c specrec.c ssr.c ssr_fb.c ssr_ipqf.c syntax.c tns.c 6 SRCS = bits.c cfft.c common.c decoder.c drc.c error.c filtbank.c hcr.c huffman.c ic_predict.c is.c lt_predict.c mdct.c mp4.c ms.c output.c pns.c ps_dec.c ps_syntax.c pulse.c rvlc.c sbr_dct.c sbr_dec.c sbr_e_nf.c sbr_fbt.c sbr_hfadj.c sbr_hfgen.c sbr_huff.c sbr_qmf.c sbr_syntax.c sbr_tf_grid.c specrec.c ssr.c ssr_fb.c ssr_ipqf.c syntax.c tns.c
7 OBJS = $(SRCS:.c=.o) 7 OBJS = $(SRCS:.c=.o)
8 8
9 CFLAGS = -I. $(OPTFLAGS) 9 CFLAGS = -I. $(OPTFLAGS) -D_GNU_SOURCE
10 10
11 # Uncomment this to use the FIXED_POINT implementation of FAAD2. 11 # Uncomment this to use the FIXED_POINT implementation of FAAD2.
12 # This should improve performance, especially for SBR files. 12 # This should improve performance, especially for SBR files.
13 #CFLAGS = -I. $(OPTFLAGS) -DFIXED_POINT 13 #CFLAGS = -I. $(OPTFLAGS) -DFIXED_POINT
14 14