comparison libfaad2/Makefile @ 20281:812f9cd94b28

Add configure switch to enable fixed-pointed mode of internal libfaad2.
author diego
date Tue, 17 Oct 2006 16:01:25 +0000
parents 59b6fa5b4201
children 618d1857f4c4
comparison
equal deleted inserted replaced
20280:5c8f177a0478 20281:812f9cd94b28
44 44
45 OBJS = $(SRCS:.c=.o) 45 OBJS = $(SRCS:.c=.o)
46 46
47 CFLAGS = -I. $(OPTFLAGS) -D_GNU_SOURCE 47 CFLAGS = -I. $(OPTFLAGS) -D_GNU_SOURCE
48 48
49 # Uncomment this to use the FIXED_POINT implementation of FAAD2. 49 # The FIXED_POINT implementation of FAAD2 improves performance
50 # This should improve performance, especially for SBR files. 50 # on some platforms, especially for SBR files.
51 #CFLAGS = -I. $(OPTFLAGS) -DFIXED_POINT 51 ifeq ($(FAAD_FIXED),yes)
52 CFLAGS += -DFIXED_POINT
53 endif
52 54
53 .SUFFIXES: .c .o 55 .SUFFIXES: .c .o
54 56
55 # .PHONY: all clean 57 # .PHONY: all clean
56 58